├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── CODEOWNERS ├── LICENSE.md ├── README.md ├── SDL2-2.32.10 ├── .git-hash ├── BUGS.txt ├── LICENSE.txt ├── README-SDL.txt ├── README.md ├── WhatsNew.txt ├── cmake │ ├── sdl2-config-version.cmake │ └── sdl2-config.cmake ├── docs │ ├── CONTRIBUTING.md │ ├── README-android.md │ ├── README-cmake.md │ ├── README-directfb.md │ ├── README-dynapi.md │ ├── README-emscripten.md │ ├── README-gdk.md │ ├── README-gesture.md │ ├── README-git.md │ ├── README-hg.md │ ├── README-ios.md │ ├── README-kmsbsd.md │ ├── README-linux.md │ ├── README-macos.md │ ├── README-n3ds.md │ ├── README-nacl.md │ ├── README-ngage.md │ ├── README-os2.md │ ├── README-pandora.md │ ├── README-platforms.md │ ├── README-porting.md │ ├── README-ps2.md │ ├── README-psp.md │ ├── README-raspberrypi.md │ ├── README-riscos.md │ ├── README-touch.md │ ├── README-versions.md │ ├── README-visualc.md │ ├── README-vita.md │ ├── README-wince.md │ ├── README-windows.md │ ├── README-winrt.md │ ├── README.md │ ├── doxyfile │ └── release_checklist.md ├── include │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h │ ├── SDL_config_android.h │ ├── SDL_config_emscripten.h │ ├── SDL_config_iphoneos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_minimal.h │ ├── SDL_config_ngage.h │ ├── SDL_config_os2.h │ ├── SDL_config_pandora.h │ ├── SDL_config_windows.h │ ├── SDL_config_wingdk.h │ ├── SDL_config_winrt.h │ ├── SDL_config_xbox.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_egl.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_filesystem.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_guid.h │ ├── SDL_haptic.h │ ├── SDL_hidapi.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_locale.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_metal.h │ ├── SDL_misc.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengl_glext.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_opengles2_gl2.h │ ├── SDL_opengles2_gl2ext.h │ ├── SDL_opengles2_gl2platform.h │ ├── SDL_opengles2_khrplatform.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_sensor.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_memory.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── SDL_vulkan.h │ ├── begin_code.h │ └── close_code.h └── lib │ ├── x64 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ └── SDL2test.lib │ └── x86 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ └── SDL2test.lib ├── SDL2_image-2.8.8 ├── .git-hash ├── CHANGES.txt ├── LICENSE.txt ├── README.txt ├── cmake │ ├── sdl2_image-config-version.cmake │ └── sdl2_image-config.cmake ├── include │ └── SDL_image.h └── lib │ ├── x64 │ ├── SDL2_image.dll │ ├── SDL2_image.lib │ └── optional │ │ ├── LICENSE.avif.txt │ │ ├── LICENSE.dav1d.txt │ │ ├── LICENSE.tiff.txt │ │ ├── LICENSE.webp.txt │ │ ├── libavif-16.dll │ │ ├── libtiff-5.dll │ │ ├── libwebp-7.dll │ │ └── libwebpdemux-2.dll │ └── x86 │ ├── SDL2_image.dll │ ├── SDL2_image.lib │ └── optional │ ├── LICENSE.avif.txt │ ├── LICENSE.dav1d.txt │ ├── LICENSE.tiff.txt │ ├── LICENSE.webp.txt │ ├── libavif-16.dll │ ├── libtiff-5.dll │ ├── libwebp-7.dll │ └── libwebpdemux-2.dll ├── SDL2_mixer-2.8.1 ├── .git-hash ├── CHANGES.txt ├── LICENSE.txt ├── README.txt ├── cmake │ ├── sdl2_mixer-config-version.cmake │ └── sdl2_mixer-config.cmake ├── include │ └── SDL_mixer.h └── lib │ ├── x64 │ ├── SDL2_mixer.dll │ ├── SDL2_mixer.lib │ └── optional │ │ ├── LICENSE.gme.txt │ │ ├── LICENSE.ogg-vorbis.txt │ │ ├── LICENSE.opus.txt │ │ ├── LICENSE.opusfile.txt │ │ ├── LICENSE.wavpack.txt │ │ ├── LICENSE.xmp.txt │ │ ├── libgme.dll │ │ ├── libogg-0.dll │ │ ├── libopus-0.dll │ │ ├── libopusfile-0.dll │ │ ├── libwavpack-1.dll │ │ └── libxmp.dll │ └── x86 │ ├── SDL2_mixer.dll │ ├── SDL2_mixer.lib │ └── optional │ ├── LICENSE.gme.txt │ ├── LICENSE.ogg-vorbis.txt │ ├── LICENSE.opus.txt │ ├── LICENSE.opusfile.txt │ ├── LICENSE.wavpack.txt │ ├── LICENSE.xmp.txt │ ├── libgme.dll │ ├── libogg-0.dll │ ├── libopus-0.dll │ ├── libopusfile-0.dll │ ├── libwavpack-1.dll │ └── libxmp.dll ├── msvc ├── Debug │ ├── SDL2.dll │ ├── SDL2_image.dll │ ├── SDL2_mixer.dll │ ├── libogg-0.dll │ ├── libopus-0.dll │ ├── libopusfile-0.dll │ └── libxmp.dll ├── Release │ ├── SDL2.dll │ ├── SDL2_image.dll │ ├── SDL2_mixer.dll │ ├── libogg-0.dll │ ├── libopus-0.dll │ ├── libopusfile-0.dll │ └── libxmp.dll ├── doomretro.sln ├── doomretro.slnx ├── doomretro.vcxproj └── x64 │ ├── Debug │ ├── SDL2.dll │ ├── SDL2_image.dll │ ├── SDL2_mixer.dll │ ├── libogg-0.dll │ ├── libopus-0.dll │ ├── libopusfile-0.dll │ └── libxmp.dll │ └── Release │ ├── SDL2.dll │ ├── SDL2_image.dll │ ├── SDL2_mixer.dll │ ├── libogg-0.dll │ ├── libopus-0.dll │ ├── libopusfile-0.dll │ └── libxmp.dll ├── releasenotes.md ├── res ├── -N0_TEX-.png ├── ANIMATED.lmp ├── BLD2A0.png ├── BLD2B0.png ├── BLD2C0.png ├── BLD2D0.png ├── BLD2E0.png ├── BLD2F0.png ├── BLD2G0.png ├── BLD2H0.png ├── BLD2I0.png ├── BLD2J0.png ├── BLD2K0.png ├── BLD2L0.png ├── BOSSBAC2.png ├── BOSSBAC3.png ├── BOSSBACK.png ├── BRGHTMPS.lmp ├── CHEXBEX.lmp ├── CRBLACK.lmp ├── CRBLUE.lmp ├── CREDIT1.png ├── CREDIT2.png ├── CREDIT3.png ├── CRGOLD.lmp ├── CRGRAY.lmp ├── CRGREEN.lmp ├── CRORANGE.lmp ├── CRPURPLE.lmp ├── CRRED.lmp ├── CRWHITE.lmp ├── CRYELLOW.lmp ├── DEHACKED.lmp ├── DOGSA1.png ├── DOGSA2.png ├── DOGSA3.png ├── DOGSA4.png ├── DOGSA5.png ├── DOGSA6.png ├── DOGSA7.png ├── DOGSA8.png ├── DOGSB1.png ├── DOGSB2.png ├── DOGSB3.png ├── DOGSB4.png ├── DOGSB5.png ├── DOGSB6.png ├── DOGSB7.png ├── DOGSB8.png ├── DOGSC1.png ├── DOGSC2.png ├── DOGSC3.png ├── DOGSC4.png ├── DOGSC5.png ├── DOGSC6.png ├── DOGSC7.png ├── DOGSC8.png ├── DOGSD1.png ├── DOGSD2.png ├── DOGSD3.png ├── DOGSD4.png ├── DOGSD5.png ├── DOGSD6.png ├── DOGSD7.png ├── DOGSD8.png ├── DOGSE1.png ├── DOGSE2.png ├── DOGSE3.png ├── DOGSE4.png ├── DOGSE5.png ├── DOGSE6.png ├── DOGSE7.png ├── DOGSE8.png ├── DOGSF1.png ├── DOGSF2.png ├── DOGSF3.png ├── DOGSF4.png ├── DOGSF5.png ├── DOGSF6.png ├── DOGSF7.png ├── DOGSF8.png ├── DOGSG1.png ├── DOGSG2.png ├── DOGSG3.png ├── DOGSG4.png ├── DOGSG5.png ├── DOGSG6.png ├── DOGSG7.png ├── DOGSG8.png ├── DOGSH1.png ├── DOGSH2.png ├── DOGSH3.png ├── DOGSH4.png ├── DOGSH5.png ├── DOGSH6.png ├── DOGSH7.png ├── DOGSH8.png ├── DOGSI0.png ├── DOGSJ0.png ├── DOGSK0.png ├── DOGSL0.png ├── DOGSM0.png ├── DOGSN0.png ├── DRBNDLST.png ├── DRBORDER.png ├── DRBRAND.png ├── DRBUDDH1.png ├── DRBUDDH2.png ├── DRCMDLST.png ├── DRCOLOR1.png ├── DRCOLOR2.png ├── DRCOMPAT.lmp ├── DRCVRLST.png ├── DRFNPRNT.png ├── DRFON000.png ├── DRFON032.png ├── DRFON033.png ├── DRFON034.png ├── DRFON035.png ├── DRFON036.png ├── DRFON037.png ├── DRFON038.png ├── DRFON039.png ├── DRFON040.png ├── DRFON041.png ├── DRFON042.png ├── DRFON043.png ├── DRFON044.png ├── DRFON045.png ├── DRFON046.png ├── DRFON047.png ├── DRFON048.png ├── DRFON049.png ├── DRFON050.png ├── DRFON051.png ├── DRFON052.png ├── DRFON053.png ├── DRFON054.png ├── DRFON055.png ├── DRFON056.png ├── DRFON057.png ├── DRFON058.png ├── DRFON059.png ├── DRFON060.png ├── DRFON061.png ├── DRFON062.png ├── DRFON063.png ├── DRFON064.png ├── DRFON065.png ├── DRFON066.png ├── DRFON067.png ├── DRFON068.png ├── DRFON069.png ├── DRFON070.png ├── DRFON071.png ├── DRFON072.png ├── DRFON073.png ├── DRFON074.png ├── DRFON075.png ├── DRFON076.png ├── DRFON077.png ├── DRFON078.png ├── DRFON079.png ├── DRFON080.png ├── DRFON081.png ├── DRFON082.png ├── DRFON083.png ├── DRFON084.png ├── DRFON085.png ├── DRFON086.png ├── DRFON087.png ├── DRFON088.png ├── DRFON089.png ├── DRFON090.png ├── DRFON091.png ├── DRFON092.png ├── DRFON093.png ├── DRFON094.png ├── DRFON095.png ├── DRFON096.png ├── DRFON097.png ├── DRFON098.png ├── DRFON099.png ├── DRFON100.png ├── DRFON101.png ├── DRFON102.png ├── DRFON103.png ├── DRFON104.png ├── DRFON105.png ├── DRFON106.png ├── DRFON107.png ├── DRFON108.png ├── DRFON109.png ├── DRFON110.png ├── DRFON111.png ├── DRFON112.png ├── DRFON113.png ├── DRFON114.png ├── DRFON115.png ├── DRFON116.png ├── DRFON117.png ├── DRFON118.png ├── DRFON119.png ├── DRFON120.png ├── DRFON121.png ├── DRFON122.png ├── DRFON123.png ├── DRFON124.png ├── DRFON125.png ├── DRFON126.png ├── DRFON128.png ├── DRFON130.png ├── DRFON131.png ├── DRFON132.png ├── DRFON133.png ├── DRFON134.png ├── DRFON135.png ├── DRFON136.png ├── DRFON137.png ├── DRFON138.png ├── DRFON139.png ├── DRFON140.png ├── DRFON142.png ├── DRFON145.png ├── DRFON146.png ├── DRFON147.png ├── DRFON148.png ├── DRFON149.png ├── DRFON150.png ├── DRFON151.png ├── DRFON152.png ├── DRFON153.png ├── DRFON154.png ├── DRFON155.png ├── DRFON156.png ├── DRFON158.png ├── DRFON159.png ├── DRFON160.png ├── DRFON161.png ├── DRFON162.png ├── DRFON163.png ├── DRFON164.png ├── DRFON165.png ├── DRFON166.png ├── DRFON167.png ├── DRFON168.png ├── DRFON169.png ├── DRFON170.png ├── DRFON171.png ├── DRFON172.png ├── DRFON173.png ├── DRFON174.png ├── DRFON175.png ├── DRFON176.png ├── DRFON177.png ├── DRFON178.png ├── DRFON179.png ├── DRFON180.png ├── DRFON181.png ├── DRFON182.png ├── DRFON183.png ├── DRFON184.png ├── DRFON185.png ├── DRFON186.png ├── DRFON187.png ├── DRFON188.png ├── DRFON189.png ├── DRFON190.png ├── DRFON191.png ├── DRFON192.png ├── DRFON193.png ├── DRFON194.png ├── DRFON195.png ├── DRFON196.png ├── DRFON197.png ├── DRFON198.png ├── DRFON199.png ├── DRFON200.png ├── DRFON201.png ├── DRFON202.png ├── DRFON203.png ├── DRFON204.png ├── DRFON205.png ├── DRFON206.png ├── DRFON207.png ├── DRFON208.png ├── DRFON209.png ├── DRFON210.png ├── DRFON211.png ├── DRFON212.png ├── DRFON213.png ├── DRFON214.png ├── DRFON215.png ├── DRFON216.png ├── DRFON217.png ├── DRFON218.png ├── DRFON219.png ├── DRFON220.png ├── DRFON221.png ├── DRFON222.png ├── DRFON223.png ├── DRFON224.png ├── DRFON225.png ├── DRFON226.png ├── DRFON227.png ├── DRFON228.png ├── DRFON229.png ├── DRFON230.png ├── DRFON231.png ├── DRFON232.png ├── DRFON233.png ├── DRFON234.png ├── DRFON235.png ├── DRFON236.png ├── DRFON237.png ├── DRFON238.png ├── DRFON239.png ├── DRFON240.png ├── DRFON241.png ├── DRFON242.png ├── DRFON243.png ├── DRFON244.png ├── DRFON245.png ├── DRFON246.png ├── DRFON247.png ├── DRFON248.png ├── DRFON249.png ├── DRFON250.png ├── DRFON251.png ├── DRFON252.png ├── DRFON253.png ├── DRFON254.png ├── DRFON255.png ├── DRFONAM.png ├── DRFONCLR.png ├── DRFONFPS.png ├── DRFONPM.png ├── DRFONUND.png ├── DRFONWRN.png ├── DRHUD0A.png ├── DRHUD0B.png ├── DRHUD1A.png ├── DRHUD1B.png ├── DRHUD2A.png ├── DRHUD2B.png ├── DRHUD3A.png ├── DRHUD3B.png ├── DRHUD4A.png ├── DRHUD4B.png ├── DRHUD5A.png ├── DRHUD5B.png ├── DRHUD6A.png ├── DRHUD6B.png ├── DRHUD7A.png ├── DRHUD7B.png ├── DRHUD8A.png ├── DRHUD8B.png ├── DRHUD9A.png ├── DRHUD9B.png ├── DRHUDE.png ├── DRHUDIA.png ├── DRHUDIB.png ├── DRHUDKEY.png ├── DRHUDL1.png ├── DRHUDL2.png ├── DRHUDNEG.png ├── DRHUDR.png ├── DRHUDSKU.png ├── DRHUDWP1.png ├── DRLOGO01.png ├── DRLOGO02.png ├── DRLOGO03.png ├── DRLOGO04.png ├── DRLOGO05.png ├── DRLOGO06.png ├── DRLOGO07.png ├── DRLOGO08.png ├── DRLOGO09.png ├── DRLOGO10.png ├── DRLOGO11.png ├── DRLOGO12.png ├── DRLOGO13.png ├── DRLOGO14.png ├── DRLOGO15.png ├── DRLOGO16.png ├── DRLOGO17.png ├── DRLOGO18.png ├── DRMAPLST.png ├── DRMAPST.png ├── DRPLYRST.png ├── DRTHNLST.png ├── DRXHAIR1.png ├── DRXHAIR2.png ├── DRXHAIR3.png ├── DRXHAIR4.png ├── DRXHAIR5.png ├── DRXHAIR6.png ├── DRXHAIR7.png ├── DRXHAIR8.png ├── DRXHAIR9.png ├── DSCONSOL.wav ├── DSDGACT.wav ├── DSDGATK.wav ├── DSDGDTH.wav ├── DSDGPAIN.wav ├── DSDGSIT.wav ├── DSSCRSHT.wav ├── DSSECRET.wav ├── ENDPIC.png ├── HELP.png ├── HELP1.png ├── HELP3.png ├── HELP4.png ├── INTERPI1.png ├── INTERPI2.png ├── INTERPI3.png ├── INTERPIC.png ├── MEDIA0.png ├── MISFA0.png ├── MISFB0.png ├── M_DOOM.png ├── M_EPI6.png ├── PFUB1.png ├── PFUB2.png ├── PLAYPAL.pal ├── PSTRA0.png ├── RSMKA0.png ├── RSMKB0.png ├── RSMKC0.png ├── RSMKD0.png ├── SHT2A0.png ├── SHT2E0.png ├── SIGILIN2.png ├── SIGILINT.png ├── SPLSHPAL.pal ├── STAMMO.png ├── STAMMO2.png ├── STBAR.png ├── STBAR2.png ├── STBAR3.png ├── STBAR4.png ├── STFGOD0.png ├── STIMA0.png ├── STKEYS6.png ├── STKEYS7.png ├── STKEYS8.png ├── SWITCHES.lmp ├── TITLEPI1.png ├── TITLEPI2.png ├── TITLEPIP.png ├── TITLEPIT.png ├── TNT1A0.png ├── VANILLA.lmp ├── VICTORY2.png ├── WATERMAP.lmp ├── WIMAP0.png ├── WIMAP1.png ├── WIMAP2.png ├── WIPERIOD.png ├── WISUCKS.png ├── doomretro.ico ├── doomretro.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ └── icon_512x512.png ├── doomretro.wad ├── e1m4b.wad └── e1m8b.wad ├── scripts └── build.sh ├── src ├── Makefile ├── Makefile.mingw ├── Makefile.osx ├── am_map.c ├── am_map.h ├── cJSON │ ├── cJSON.c │ └── cJSON.h ├── c_autocomplete.c ├── c_cmds.c ├── c_cmds.h ├── c_console.c ├── c_console.h ├── d_deh.c ├── d_deh.h ├── d_english.h ├── d_event.h ├── d_items.c ├── d_items.h ├── d_iwad.c ├── d_iwad.h ├── d_loop.c ├── d_loop.h ├── d_main.c ├── d_main.h ├── d_player.h ├── d_think.h ├── d_ticcmd.h ├── doomdata.h ├── doomdef.h ├── doomkeys.h ├── doomretro.c ├── doomretro.manifest ├── doomstat.c ├── doomstat.h ├── doomtype.h ├── dstrings.c ├── dstrings.h ├── f_finale.c ├── f_finale.h ├── f_wipe.c ├── f_wipe.h ├── g_game.c ├── g_game.h ├── hu_lib.c ├── hu_lib.h ├── hu_stuff.c ├── hu_stuff.h ├── i_colors.c ├── i_colors.h ├── i_controller.c ├── i_controller.h ├── i_music.c ├── i_sound.c ├── i_swap.h ├── i_system.c ├── i_system.h ├── i_timer.c ├── i_timer.h ├── i_video.c ├── i_video.h ├── i_winmusic.c ├── i_winmusic.h ├── info.c ├── info.h ├── m_argv.c ├── m_argv.h ├── m_array.h ├── m_bbox.c ├── m_bbox.h ├── m_cheat.c ├── m_cheat.h ├── m_config.c ├── m_config.h ├── m_controls.c ├── m_controls.h ├── m_fixed.h ├── m_font.c ├── m_font.h ├── m_menu.c ├── m_menu.h ├── m_misc.c ├── m_misc.h ├── m_random.c ├── m_random.h ├── md5.c ├── md5.h ├── memio.c ├── memio.h ├── midifile.c ├── midifile.h ├── miniz │ ├── LICENSE │ ├── miniz.c │ └── miniz.h ├── mus2mid.c ├── mus2mid.h ├── p_ceiling.c ├── p_doors.c ├── p_enemy.c ├── p_fix.c ├── p_fix.h ├── p_floor.c ├── p_genlin.c ├── p_inter.c ├── p_inter.h ├── p_lights.c ├── p_local.h ├── p_map.c ├── p_maputl.c ├── p_mobj.c ├── p_mobj.h ├── p_plats.c ├── p_pspr.c ├── p_pspr.h ├── p_saveg.c ├── p_saveg.h ├── p_setup.c ├── p_setup.h ├── p_sight.c ├── p_spec.c ├── p_spec.h ├── p_switch.c ├── p_telept.c ├── p_tick.c ├── p_tick.h ├── p_user.c ├── r_bsp.c ├── r_bsp.h ├── r_data.c ├── r_data.h ├── r_defs.h ├── r_draw.c ├── r_draw.h ├── r_local.h ├── r_main.c ├── r_main.h ├── r_patch.c ├── r_patch.h ├── r_plane.c ├── r_plane.h ├── r_segs.c ├── r_segs.h ├── r_sky.c ├── r_sky.h ├── r_skydefs.c ├── r_skydefs.h ├── r_state.h ├── r_things.c ├── r_things.h ├── s_sound.c ├── s_sound.h ├── sc_man.c ├── sc_man.h ├── sounds.c ├── sounds.h ├── sprites.c ├── sprites.h ├── st_lib.c ├── st_lib.h ├── st_stuff.c ├── st_stuff.h ├── states.c ├── states.h ├── tables.h ├── v_data.c ├── v_data.h ├── v_video.c ├── v_video.h ├── version.c ├── version.h ├── w_file.c ├── w_file.h ├── w_merge.c ├── w_merge.h ├── w_wad.c ├── w_wad.h ├── wi_interlvl.c ├── wi_interlvl.h ├── wi_stuff.c ├── wi_stuff.h ├── win32.rc ├── z_zone.c └── z_zone.h └── xcode ├── SDL2.framework ├── Headers ├── Resources ├── SDL2 └── Versions │ ├── A │ ├── Frameworks │ │ └── hidapi.framework │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Resources │ │ │ │ │ ├── AUTHORS.txt │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ │ ├── LICENSE-gpl3.txt │ │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ │ └── LICENSE.txt │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── hidapi │ │ │ └── Current │ │ │ └── hidapi │ ├── Headers │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_locale.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_misc.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── Resources │ │ ├── Info.plist │ │ ├── License.txt │ │ ├── ReadMe.txt │ │ └── default.metallib │ ├── SDL2 │ └── _CodeSignature │ │ └── CodeResources │ └── Current ├── SDL2_image.framework ├── Headers ├── Resources ├── SDL2_image └── Versions │ ├── A │ ├── Frameworks │ │ └── webp.framework │ │ │ ├── Headers │ │ │ └── webp │ │ │ │ ├── decode.h │ │ │ │ ├── demux.h │ │ │ │ ├── encode.h │ │ │ │ ├── mux_types.h │ │ │ │ └── types.h │ │ │ ├── Resources │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ └── LICENSE.webp.txt │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── demux.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ ├── mux_types.h │ │ │ │ │ │ └── types.h │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.webp.txt │ │ │ │ └── webp │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ └── webp │ │ │ │ │ ├── decode.h │ │ │ │ │ ├── demux.h │ │ │ │ │ ├── encode.h │ │ │ │ │ ├── mux_types.h │ │ │ │ │ └── types.h │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.webp.txt │ │ │ │ └── webp │ │ │ └── webp │ ├── Headers │ │ └── SDL_image.h │ ├── Resources │ │ ├── Info.plist │ │ ├── ReadMe.txt │ │ └── Welcome.txt │ └── SDL2_image │ └── Current ├── SDL2_mixer.framework ├── Headers ├── Resources ├── SDL2_mixer └── Versions │ ├── A │ ├── Frameworks │ │ ├── FLAC.framework │ │ │ ├── FLAC │ │ │ ├── Headers │ │ │ │ └── FLAC │ │ │ │ │ ├── all.h │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── callback.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── metadata.h │ │ │ │ │ ├── ordinals.h │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ └── stream_encoder.h │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.FLAC.txt │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FLAC │ │ │ │ ├── Headers │ │ │ │ │ └── FLAC │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ └── Current │ │ │ │ ├── FLAC │ │ │ │ ├── Headers │ │ │ │ └── FLAC │ │ │ │ │ ├── all.h │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── callback.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── metadata.h │ │ │ │ │ ├── ordinals.h │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ └── stream_encoder.h │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.FLAC.txt │ │ ├── Ogg.framework │ │ │ ├── Headers │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ ├── Ogg │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ │ ├── Ogg │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ │ ├── Ogg │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ ├── Opus.framework │ │ │ ├── Headers │ │ │ │ ├── opus.h │ │ │ │ ├── opus_defines.h │ │ │ │ ├── opus_multistream.h │ │ │ │ └── opus_types.h │ │ │ ├── Opus │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.opus.txt │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── opus.h │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ └── opus_types.h │ │ │ │ ├── Opus │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── opus.h │ │ │ │ ├── opus_defines.h │ │ │ │ ├── opus_multistream.h │ │ │ │ └── opus_types.h │ │ │ │ ├── Opus │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.opus.txt │ │ ├── OpusFile.framework │ │ │ ├── Headers │ │ │ │ └── opusfile.h │ │ │ ├── OpusFile │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.opusfile.txt │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── opusfile.h │ │ │ │ ├── OpusFile │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ └── opusfile.h │ │ │ │ ├── OpusFile │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.opusfile.txt │ │ ├── Vorbis.framework │ │ │ ├── Headers │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ └── Vorbis │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ └── Vorbis │ │ │ └── Vorbis │ │ ├── modplug.framework │ │ │ ├── Headers │ │ │ │ └── modplug.h │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.modplug.txt │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ └── modplug │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ └── modplug │ │ │ └── modplug │ │ └── mpg123.framework │ │ │ ├── Headers │ │ │ ├── fmt123.h │ │ │ └── mpg123.h │ │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── LICENSE.mpg123.txt │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── fmt123.h │ │ │ │ │ └── mpg123.h │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ └── mpg123 │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── fmt123.h │ │ │ │ └── mpg123.h │ │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ └── mpg123 │ │ │ └── mpg123 │ ├── Headers │ │ └── SDL_mixer.h │ ├── Resources │ │ └── Info.plist │ └── SDL2_mixer │ └── Current ├── doomretroapp.xcodeproj └── project.pbxproj └── doomretroapp ├── Images.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Info.plist └── doomretro.icns /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/README.md -------------------------------------------------------------------------------- /SDL2-2.32.10/.git-hash: -------------------------------------------------------------------------------- 1 | 5d249570393f7a37e037abf22cd6012a4cc56a71 2 | -------------------------------------------------------------------------------- /SDL2-2.32.10/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/BUGS.txt -------------------------------------------------------------------------------- /SDL2-2.32.10/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/LICENSE.txt -------------------------------------------------------------------------------- /SDL2-2.32.10/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/README-SDL.txt -------------------------------------------------------------------------------- /SDL2-2.32.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/README.md -------------------------------------------------------------------------------- /SDL2-2.32.10/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/WhatsNew.txt -------------------------------------------------------------------------------- /SDL2-2.32.10/cmake/sdl2-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/cmake/sdl2-config-version.cmake -------------------------------------------------------------------------------- /SDL2-2.32.10/cmake/sdl2-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/cmake/sdl2-config.cmake -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-android.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-cmake.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-directfb.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-dynapi.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-emscripten.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-gdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-gdk.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-gesture.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-git.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-hg.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-ios.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-kmsbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-kmsbsd.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-linux.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-macos.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-n3ds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-n3ds.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-nacl.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-ngage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-ngage.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-os2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-os2.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-pandora.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-platforms.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-porting.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-ps2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-ps2.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-psp.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-riscos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-riscos.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-touch.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-versions.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-visualc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-visualc.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-vita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-vita.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-wince.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-windows.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README-winrt.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/README.md -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/doxyfile -------------------------------------------------------------------------------- /SDL2-2.32.10/docs/release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/docs/release_checklist.md -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_assert.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_atomic.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_audio.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_bits.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_blendmode.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_clipboard.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_android.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_emscripten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_emscripten.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_ngage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_ngage.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_os2.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_windows.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_wingdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_wingdk.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_config_xbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_config_xbox.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_copying.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_egl.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_endian.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_error.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_events.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_filesystem.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_gesture.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_guid.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_haptic.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_hidapi.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_hints.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_joystick.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_keyboard.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_keycode.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_loadso.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_locale.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_log.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_main.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_messagebox.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_metal.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_misc.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_mouse.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_mutex.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_name.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_opengl.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_opengles.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_opengles2.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_pixels.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_platform.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_power.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_quit.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_rect.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_render.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_revision.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_rwops.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_scancode.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_sensor.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_shape.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_stdinc.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_surface.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_system.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_syswm.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_assert.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_common.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_compare.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_font.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_harness.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_images.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_log.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_md5.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_memory.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_test_random.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_thread.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_timer.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_touch.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_types.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_version.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_video.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/SDL_vulkan.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/begin_code.h -------------------------------------------------------------------------------- /SDL2-2.32.10/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/include/close_code.h -------------------------------------------------------------------------------- /SDL2-2.32.10/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /SDL2-2.32.10/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /SDL2-2.32.10/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /SDL2-2.32.10/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /SDL2-2.32.10/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /SDL2-2.32.10/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /SDL2-2.32.10/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /SDL2-2.32.10/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2-2.32.10/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /SDL2_image-2.8.8/.git-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/.git-hash -------------------------------------------------------------------------------- /SDL2_image-2.8.8/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/CHANGES.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/LICENSE.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/README.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/cmake/sdl2_image-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/cmake/sdl2_image-config.cmake -------------------------------------------------------------------------------- /SDL2_image-2.8.8/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/include/SDL_image.h -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/SDL2_image.dll -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/SDL2_image.lib -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/optional/LICENSE.avif.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/optional/LICENSE.avif.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/optional/LICENSE.dav1d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/optional/LICENSE.dav1d.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/optional/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/optional/LICENSE.tiff.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/optional/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/optional/LICENSE.webp.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/optional/libavif-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/optional/libavif-16.dll -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/optional/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/optional/libtiff-5.dll -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/optional/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/optional/libwebp-7.dll -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x64/optional/libwebpdemux-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x64/optional/libwebpdemux-2.dll -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/SDL2_image.dll -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/SDL2_image.lib -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/optional/LICENSE.avif.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/optional/LICENSE.avif.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/optional/LICENSE.dav1d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/optional/LICENSE.dav1d.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/optional/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/optional/LICENSE.tiff.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/optional/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/optional/LICENSE.webp.txt -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/optional/libavif-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/optional/libavif-16.dll -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/optional/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/optional/libtiff-5.dll -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/optional/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/optional/libwebp-7.dll -------------------------------------------------------------------------------- /SDL2_image-2.8.8/lib/x86/optional/libwebpdemux-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_image-2.8.8/lib/x86/optional/libwebpdemux-2.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/.git-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/.git-hash -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/CHANGES.txt -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/LICENSE.txt -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/README.txt -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/cmake/sdl2_mixer-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/cmake/sdl2_mixer-config.cmake -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/include/SDL_mixer.h -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/SDL2_mixer.lib -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.gme.txt -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.opus.txt -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.xmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/optional/LICENSE.xmp.txt -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/optional/libgme.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/optional/libgme.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/optional/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/optional/libogg-0.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/optional/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/optional/libopus-0.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/optional/libwavpack-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/optional/libwavpack-1.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x64/optional/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x64/optional/libxmp.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/SDL2_mixer.lib -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.gme.txt -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.opus.txt -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.xmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/optional/LICENSE.xmp.txt -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/optional/libgme.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/optional/libgme.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/optional/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/optional/libogg-0.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/optional/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/optional/libopus-0.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/optional/libwavpack-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/optional/libwavpack-1.dll -------------------------------------------------------------------------------- /SDL2_mixer-2.8.1/lib/x86/optional/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/SDL2_mixer-2.8.1/lib/x86/optional/libxmp.dll -------------------------------------------------------------------------------- /msvc/Debug/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Debug/SDL2.dll -------------------------------------------------------------------------------- /msvc/Debug/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Debug/SDL2_image.dll -------------------------------------------------------------------------------- /msvc/Debug/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Debug/SDL2_mixer.dll -------------------------------------------------------------------------------- /msvc/Debug/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Debug/libogg-0.dll -------------------------------------------------------------------------------- /msvc/Debug/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Debug/libopus-0.dll -------------------------------------------------------------------------------- /msvc/Debug/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Debug/libopusfile-0.dll -------------------------------------------------------------------------------- /msvc/Debug/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Debug/libxmp.dll -------------------------------------------------------------------------------- /msvc/Release/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Release/SDL2.dll -------------------------------------------------------------------------------- /msvc/Release/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Release/SDL2_image.dll -------------------------------------------------------------------------------- /msvc/Release/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Release/SDL2_mixer.dll -------------------------------------------------------------------------------- /msvc/Release/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Release/libogg-0.dll -------------------------------------------------------------------------------- /msvc/Release/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Release/libopus-0.dll -------------------------------------------------------------------------------- /msvc/Release/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Release/libopusfile-0.dll -------------------------------------------------------------------------------- /msvc/Release/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/Release/libxmp.dll -------------------------------------------------------------------------------- /msvc/doomretro.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/doomretro.sln -------------------------------------------------------------------------------- /msvc/doomretro.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/doomretro.slnx -------------------------------------------------------------------------------- /msvc/doomretro.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/doomretro.vcxproj -------------------------------------------------------------------------------- /msvc/x64/Debug/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Debug/SDL2.dll -------------------------------------------------------------------------------- /msvc/x64/Debug/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Debug/SDL2_image.dll -------------------------------------------------------------------------------- /msvc/x64/Debug/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Debug/SDL2_mixer.dll -------------------------------------------------------------------------------- /msvc/x64/Debug/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Debug/libogg-0.dll -------------------------------------------------------------------------------- /msvc/x64/Debug/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Debug/libopus-0.dll -------------------------------------------------------------------------------- /msvc/x64/Debug/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Debug/libopusfile-0.dll -------------------------------------------------------------------------------- /msvc/x64/Debug/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Debug/libxmp.dll -------------------------------------------------------------------------------- /msvc/x64/Release/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Release/SDL2.dll -------------------------------------------------------------------------------- /msvc/x64/Release/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Release/SDL2_image.dll -------------------------------------------------------------------------------- /msvc/x64/Release/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Release/SDL2_mixer.dll -------------------------------------------------------------------------------- /msvc/x64/Release/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Release/libogg-0.dll -------------------------------------------------------------------------------- /msvc/x64/Release/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Release/libopus-0.dll -------------------------------------------------------------------------------- /msvc/x64/Release/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Release/libopusfile-0.dll -------------------------------------------------------------------------------- /msvc/x64/Release/libxmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/msvc/x64/Release/libxmp.dll -------------------------------------------------------------------------------- /releasenotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/releasenotes.md -------------------------------------------------------------------------------- /res/-N0_TEX-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/-N0_TEX-.png -------------------------------------------------------------------------------- /res/ANIMATED.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/ANIMATED.lmp -------------------------------------------------------------------------------- /res/BLD2A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2A0.png -------------------------------------------------------------------------------- /res/BLD2B0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2B0.png -------------------------------------------------------------------------------- /res/BLD2C0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2C0.png -------------------------------------------------------------------------------- /res/BLD2D0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2D0.png -------------------------------------------------------------------------------- /res/BLD2E0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2E0.png -------------------------------------------------------------------------------- /res/BLD2F0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2F0.png -------------------------------------------------------------------------------- /res/BLD2G0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2G0.png -------------------------------------------------------------------------------- /res/BLD2H0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2H0.png -------------------------------------------------------------------------------- /res/BLD2I0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2I0.png -------------------------------------------------------------------------------- /res/BLD2J0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2J0.png -------------------------------------------------------------------------------- /res/BLD2K0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2K0.png -------------------------------------------------------------------------------- /res/BLD2L0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BLD2L0.png -------------------------------------------------------------------------------- /res/BOSSBAC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BOSSBAC2.png -------------------------------------------------------------------------------- /res/BOSSBAC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BOSSBAC3.png -------------------------------------------------------------------------------- /res/BOSSBACK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BOSSBACK.png -------------------------------------------------------------------------------- /res/BRGHTMPS.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/BRGHTMPS.lmp -------------------------------------------------------------------------------- /res/CHEXBEX.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CHEXBEX.lmp -------------------------------------------------------------------------------- /res/CRBLACK.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRBLACK.lmp -------------------------------------------------------------------------------- /res/CRBLUE.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRBLUE.lmp -------------------------------------------------------------------------------- /res/CREDIT1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CREDIT1.png -------------------------------------------------------------------------------- /res/CREDIT2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CREDIT2.png -------------------------------------------------------------------------------- /res/CREDIT3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CREDIT3.png -------------------------------------------------------------------------------- /res/CRGOLD.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRGOLD.lmp -------------------------------------------------------------------------------- /res/CRGRAY.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRGRAY.lmp -------------------------------------------------------------------------------- /res/CRGREEN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRGREEN.lmp -------------------------------------------------------------------------------- /res/CRORANGE.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRORANGE.lmp -------------------------------------------------------------------------------- /res/CRPURPLE.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRPURPLE.lmp -------------------------------------------------------------------------------- /res/CRRED.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRRED.lmp -------------------------------------------------------------------------------- /res/CRWHITE.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRWHITE.lmp -------------------------------------------------------------------------------- /res/CRYELLOW.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/CRYELLOW.lmp -------------------------------------------------------------------------------- /res/DEHACKED.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DEHACKED.lmp -------------------------------------------------------------------------------- /res/DOGSA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSA1.png -------------------------------------------------------------------------------- /res/DOGSA2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSA2.png -------------------------------------------------------------------------------- /res/DOGSA3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSA3.png -------------------------------------------------------------------------------- /res/DOGSA4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSA4.png -------------------------------------------------------------------------------- /res/DOGSA5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSA5.png -------------------------------------------------------------------------------- /res/DOGSA6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSA6.png -------------------------------------------------------------------------------- /res/DOGSA7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSA7.png -------------------------------------------------------------------------------- /res/DOGSA8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSA8.png -------------------------------------------------------------------------------- /res/DOGSB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSB1.png -------------------------------------------------------------------------------- /res/DOGSB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSB2.png -------------------------------------------------------------------------------- /res/DOGSB3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSB3.png -------------------------------------------------------------------------------- /res/DOGSB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSB4.png -------------------------------------------------------------------------------- /res/DOGSB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSB5.png -------------------------------------------------------------------------------- /res/DOGSB6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSB6.png -------------------------------------------------------------------------------- /res/DOGSB7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSB7.png -------------------------------------------------------------------------------- /res/DOGSB8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSB8.png -------------------------------------------------------------------------------- /res/DOGSC1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSC1.png -------------------------------------------------------------------------------- /res/DOGSC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSC2.png -------------------------------------------------------------------------------- /res/DOGSC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSC3.png -------------------------------------------------------------------------------- /res/DOGSC4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSC4.png -------------------------------------------------------------------------------- /res/DOGSC5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSC5.png -------------------------------------------------------------------------------- /res/DOGSC6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSC6.png -------------------------------------------------------------------------------- /res/DOGSC7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSC7.png -------------------------------------------------------------------------------- /res/DOGSC8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSC8.png -------------------------------------------------------------------------------- /res/DOGSD1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSD1.png -------------------------------------------------------------------------------- /res/DOGSD2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSD2.png -------------------------------------------------------------------------------- /res/DOGSD3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSD3.png -------------------------------------------------------------------------------- /res/DOGSD4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSD4.png -------------------------------------------------------------------------------- /res/DOGSD5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSD5.png -------------------------------------------------------------------------------- /res/DOGSD6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSD6.png -------------------------------------------------------------------------------- /res/DOGSD7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSD7.png -------------------------------------------------------------------------------- /res/DOGSD8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSD8.png -------------------------------------------------------------------------------- /res/DOGSE1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSE1.png -------------------------------------------------------------------------------- /res/DOGSE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSE2.png -------------------------------------------------------------------------------- /res/DOGSE3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSE3.png -------------------------------------------------------------------------------- /res/DOGSE4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSE4.png -------------------------------------------------------------------------------- /res/DOGSE5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSE5.png -------------------------------------------------------------------------------- /res/DOGSE6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSE6.png -------------------------------------------------------------------------------- /res/DOGSE7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSE7.png -------------------------------------------------------------------------------- /res/DOGSE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSE8.png -------------------------------------------------------------------------------- /res/DOGSF1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSF1.png -------------------------------------------------------------------------------- /res/DOGSF2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSF2.png -------------------------------------------------------------------------------- /res/DOGSF3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSF3.png -------------------------------------------------------------------------------- /res/DOGSF4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSF4.png -------------------------------------------------------------------------------- /res/DOGSF5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSF5.png -------------------------------------------------------------------------------- /res/DOGSF6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSF6.png -------------------------------------------------------------------------------- /res/DOGSF7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSF7.png -------------------------------------------------------------------------------- /res/DOGSF8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSF8.png -------------------------------------------------------------------------------- /res/DOGSG1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSG1.png -------------------------------------------------------------------------------- /res/DOGSG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSG2.png -------------------------------------------------------------------------------- /res/DOGSG3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSG3.png -------------------------------------------------------------------------------- /res/DOGSG4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSG4.png -------------------------------------------------------------------------------- /res/DOGSG5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSG5.png -------------------------------------------------------------------------------- /res/DOGSG6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSG6.png -------------------------------------------------------------------------------- /res/DOGSG7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSG7.png -------------------------------------------------------------------------------- /res/DOGSG8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSG8.png -------------------------------------------------------------------------------- /res/DOGSH1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSH1.png -------------------------------------------------------------------------------- /res/DOGSH2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSH2.png -------------------------------------------------------------------------------- /res/DOGSH3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSH3.png -------------------------------------------------------------------------------- /res/DOGSH4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSH4.png -------------------------------------------------------------------------------- /res/DOGSH5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSH5.png -------------------------------------------------------------------------------- /res/DOGSH6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSH6.png -------------------------------------------------------------------------------- /res/DOGSH7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSH7.png -------------------------------------------------------------------------------- /res/DOGSH8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSH8.png -------------------------------------------------------------------------------- /res/DOGSI0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSI0.png -------------------------------------------------------------------------------- /res/DOGSJ0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSJ0.png -------------------------------------------------------------------------------- /res/DOGSK0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSK0.png -------------------------------------------------------------------------------- /res/DOGSL0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSL0.png -------------------------------------------------------------------------------- /res/DOGSM0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSM0.png -------------------------------------------------------------------------------- /res/DOGSN0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DOGSN0.png -------------------------------------------------------------------------------- /res/DRBNDLST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRBNDLST.png -------------------------------------------------------------------------------- /res/DRBORDER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRBORDER.png -------------------------------------------------------------------------------- /res/DRBRAND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRBRAND.png -------------------------------------------------------------------------------- /res/DRBUDDH1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRBUDDH1.png -------------------------------------------------------------------------------- /res/DRBUDDH2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRBUDDH2.png -------------------------------------------------------------------------------- /res/DRCMDLST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRCMDLST.png -------------------------------------------------------------------------------- /res/DRCOLOR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRCOLOR1.png -------------------------------------------------------------------------------- /res/DRCOLOR2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRCOLOR2.png -------------------------------------------------------------------------------- /res/DRCOMPAT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRCOMPAT.lmp -------------------------------------------------------------------------------- /res/DRCVRLST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRCVRLST.png -------------------------------------------------------------------------------- /res/DRFNPRNT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFNPRNT.png -------------------------------------------------------------------------------- /res/DRFON000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON000.png -------------------------------------------------------------------------------- /res/DRFON032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON032.png -------------------------------------------------------------------------------- /res/DRFON033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON033.png -------------------------------------------------------------------------------- /res/DRFON034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON034.png -------------------------------------------------------------------------------- /res/DRFON035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON035.png -------------------------------------------------------------------------------- /res/DRFON036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON036.png -------------------------------------------------------------------------------- /res/DRFON037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON037.png -------------------------------------------------------------------------------- /res/DRFON038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON038.png -------------------------------------------------------------------------------- /res/DRFON039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON039.png -------------------------------------------------------------------------------- /res/DRFON040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON040.png -------------------------------------------------------------------------------- /res/DRFON041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON041.png -------------------------------------------------------------------------------- /res/DRFON042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON042.png -------------------------------------------------------------------------------- /res/DRFON043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON043.png -------------------------------------------------------------------------------- /res/DRFON044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON044.png -------------------------------------------------------------------------------- /res/DRFON045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON045.png -------------------------------------------------------------------------------- /res/DRFON046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON046.png -------------------------------------------------------------------------------- /res/DRFON047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON047.png -------------------------------------------------------------------------------- /res/DRFON048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON048.png -------------------------------------------------------------------------------- /res/DRFON049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON049.png -------------------------------------------------------------------------------- /res/DRFON050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON050.png -------------------------------------------------------------------------------- /res/DRFON051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON051.png -------------------------------------------------------------------------------- /res/DRFON052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON052.png -------------------------------------------------------------------------------- /res/DRFON053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON053.png -------------------------------------------------------------------------------- /res/DRFON054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON054.png -------------------------------------------------------------------------------- /res/DRFON055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON055.png -------------------------------------------------------------------------------- /res/DRFON056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON056.png -------------------------------------------------------------------------------- /res/DRFON057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON057.png -------------------------------------------------------------------------------- /res/DRFON058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON058.png -------------------------------------------------------------------------------- /res/DRFON059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON059.png -------------------------------------------------------------------------------- /res/DRFON060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON060.png -------------------------------------------------------------------------------- /res/DRFON061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON061.png -------------------------------------------------------------------------------- /res/DRFON062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON062.png -------------------------------------------------------------------------------- /res/DRFON063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON063.png -------------------------------------------------------------------------------- /res/DRFON064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON064.png -------------------------------------------------------------------------------- /res/DRFON065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON065.png -------------------------------------------------------------------------------- /res/DRFON066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON066.png -------------------------------------------------------------------------------- /res/DRFON067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON067.png -------------------------------------------------------------------------------- /res/DRFON068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON068.png -------------------------------------------------------------------------------- /res/DRFON069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON069.png -------------------------------------------------------------------------------- /res/DRFON070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON070.png -------------------------------------------------------------------------------- /res/DRFON071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON071.png -------------------------------------------------------------------------------- /res/DRFON072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON072.png -------------------------------------------------------------------------------- /res/DRFON073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON073.png -------------------------------------------------------------------------------- /res/DRFON074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON074.png -------------------------------------------------------------------------------- /res/DRFON075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON075.png -------------------------------------------------------------------------------- /res/DRFON076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON076.png -------------------------------------------------------------------------------- /res/DRFON077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON077.png -------------------------------------------------------------------------------- /res/DRFON078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON078.png -------------------------------------------------------------------------------- /res/DRFON079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON079.png -------------------------------------------------------------------------------- /res/DRFON080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON080.png -------------------------------------------------------------------------------- /res/DRFON081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON081.png -------------------------------------------------------------------------------- /res/DRFON082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON082.png -------------------------------------------------------------------------------- /res/DRFON083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON083.png -------------------------------------------------------------------------------- /res/DRFON084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON084.png -------------------------------------------------------------------------------- /res/DRFON085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON085.png -------------------------------------------------------------------------------- /res/DRFON086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON086.png -------------------------------------------------------------------------------- /res/DRFON087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON087.png -------------------------------------------------------------------------------- /res/DRFON088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON088.png -------------------------------------------------------------------------------- /res/DRFON089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON089.png -------------------------------------------------------------------------------- /res/DRFON090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON090.png -------------------------------------------------------------------------------- /res/DRFON091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON091.png -------------------------------------------------------------------------------- /res/DRFON092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON092.png -------------------------------------------------------------------------------- /res/DRFON093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON093.png -------------------------------------------------------------------------------- /res/DRFON094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON094.png -------------------------------------------------------------------------------- /res/DRFON095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON095.png -------------------------------------------------------------------------------- /res/DRFON096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON096.png -------------------------------------------------------------------------------- /res/DRFON097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON097.png -------------------------------------------------------------------------------- /res/DRFON098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON098.png -------------------------------------------------------------------------------- /res/DRFON099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON099.png -------------------------------------------------------------------------------- /res/DRFON100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON100.png -------------------------------------------------------------------------------- /res/DRFON101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON101.png -------------------------------------------------------------------------------- /res/DRFON102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON102.png -------------------------------------------------------------------------------- /res/DRFON103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON103.png -------------------------------------------------------------------------------- /res/DRFON104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON104.png -------------------------------------------------------------------------------- /res/DRFON105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON105.png -------------------------------------------------------------------------------- /res/DRFON106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON106.png -------------------------------------------------------------------------------- /res/DRFON107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON107.png -------------------------------------------------------------------------------- /res/DRFON108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON108.png -------------------------------------------------------------------------------- /res/DRFON109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON109.png -------------------------------------------------------------------------------- /res/DRFON110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON110.png -------------------------------------------------------------------------------- /res/DRFON111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON111.png -------------------------------------------------------------------------------- /res/DRFON112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON112.png -------------------------------------------------------------------------------- /res/DRFON113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON113.png -------------------------------------------------------------------------------- /res/DRFON114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON114.png -------------------------------------------------------------------------------- /res/DRFON115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON115.png -------------------------------------------------------------------------------- /res/DRFON116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON116.png -------------------------------------------------------------------------------- /res/DRFON117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON117.png -------------------------------------------------------------------------------- /res/DRFON118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON118.png -------------------------------------------------------------------------------- /res/DRFON119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON119.png -------------------------------------------------------------------------------- /res/DRFON120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON120.png -------------------------------------------------------------------------------- /res/DRFON121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON121.png -------------------------------------------------------------------------------- /res/DRFON122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON122.png -------------------------------------------------------------------------------- /res/DRFON123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON123.png -------------------------------------------------------------------------------- /res/DRFON124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON124.png -------------------------------------------------------------------------------- /res/DRFON125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON125.png -------------------------------------------------------------------------------- /res/DRFON126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON126.png -------------------------------------------------------------------------------- /res/DRFON128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON128.png -------------------------------------------------------------------------------- /res/DRFON130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON130.png -------------------------------------------------------------------------------- /res/DRFON131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON131.png -------------------------------------------------------------------------------- /res/DRFON132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON132.png -------------------------------------------------------------------------------- /res/DRFON133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON133.png -------------------------------------------------------------------------------- /res/DRFON134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON134.png -------------------------------------------------------------------------------- /res/DRFON135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON135.png -------------------------------------------------------------------------------- /res/DRFON136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON136.png -------------------------------------------------------------------------------- /res/DRFON137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON137.png -------------------------------------------------------------------------------- /res/DRFON138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON138.png -------------------------------------------------------------------------------- /res/DRFON139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON139.png -------------------------------------------------------------------------------- /res/DRFON140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON140.png -------------------------------------------------------------------------------- /res/DRFON142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON142.png -------------------------------------------------------------------------------- /res/DRFON145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON145.png -------------------------------------------------------------------------------- /res/DRFON146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON146.png -------------------------------------------------------------------------------- /res/DRFON147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON147.png -------------------------------------------------------------------------------- /res/DRFON148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON148.png -------------------------------------------------------------------------------- /res/DRFON149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON149.png -------------------------------------------------------------------------------- /res/DRFON150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON150.png -------------------------------------------------------------------------------- /res/DRFON151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON151.png -------------------------------------------------------------------------------- /res/DRFON152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON152.png -------------------------------------------------------------------------------- /res/DRFON153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON153.png -------------------------------------------------------------------------------- /res/DRFON154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON154.png -------------------------------------------------------------------------------- /res/DRFON155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON155.png -------------------------------------------------------------------------------- /res/DRFON156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON156.png -------------------------------------------------------------------------------- /res/DRFON158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON158.png -------------------------------------------------------------------------------- /res/DRFON159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON159.png -------------------------------------------------------------------------------- /res/DRFON160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON160.png -------------------------------------------------------------------------------- /res/DRFON161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON161.png -------------------------------------------------------------------------------- /res/DRFON162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON162.png -------------------------------------------------------------------------------- /res/DRFON163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON163.png -------------------------------------------------------------------------------- /res/DRFON164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON164.png -------------------------------------------------------------------------------- /res/DRFON165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON165.png -------------------------------------------------------------------------------- /res/DRFON166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON166.png -------------------------------------------------------------------------------- /res/DRFON167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON167.png -------------------------------------------------------------------------------- /res/DRFON168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON168.png -------------------------------------------------------------------------------- /res/DRFON169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON169.png -------------------------------------------------------------------------------- /res/DRFON170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON170.png -------------------------------------------------------------------------------- /res/DRFON171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON171.png -------------------------------------------------------------------------------- /res/DRFON172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON172.png -------------------------------------------------------------------------------- /res/DRFON173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON173.png -------------------------------------------------------------------------------- /res/DRFON174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON174.png -------------------------------------------------------------------------------- /res/DRFON175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON175.png -------------------------------------------------------------------------------- /res/DRFON176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON176.png -------------------------------------------------------------------------------- /res/DRFON177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON177.png -------------------------------------------------------------------------------- /res/DRFON178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON178.png -------------------------------------------------------------------------------- /res/DRFON179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON179.png -------------------------------------------------------------------------------- /res/DRFON180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON180.png -------------------------------------------------------------------------------- /res/DRFON181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON181.png -------------------------------------------------------------------------------- /res/DRFON182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON182.png -------------------------------------------------------------------------------- /res/DRFON183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON183.png -------------------------------------------------------------------------------- /res/DRFON184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON184.png -------------------------------------------------------------------------------- /res/DRFON185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON185.png -------------------------------------------------------------------------------- /res/DRFON186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON186.png -------------------------------------------------------------------------------- /res/DRFON187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON187.png -------------------------------------------------------------------------------- /res/DRFON188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON188.png -------------------------------------------------------------------------------- /res/DRFON189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON189.png -------------------------------------------------------------------------------- /res/DRFON190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON190.png -------------------------------------------------------------------------------- /res/DRFON191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON191.png -------------------------------------------------------------------------------- /res/DRFON192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON192.png -------------------------------------------------------------------------------- /res/DRFON193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON193.png -------------------------------------------------------------------------------- /res/DRFON194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON194.png -------------------------------------------------------------------------------- /res/DRFON195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON195.png -------------------------------------------------------------------------------- /res/DRFON196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON196.png -------------------------------------------------------------------------------- /res/DRFON197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON197.png -------------------------------------------------------------------------------- /res/DRFON198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON198.png -------------------------------------------------------------------------------- /res/DRFON199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON199.png -------------------------------------------------------------------------------- /res/DRFON200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON200.png -------------------------------------------------------------------------------- /res/DRFON201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON201.png -------------------------------------------------------------------------------- /res/DRFON202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON202.png -------------------------------------------------------------------------------- /res/DRFON203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON203.png -------------------------------------------------------------------------------- /res/DRFON204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON204.png -------------------------------------------------------------------------------- /res/DRFON205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON205.png -------------------------------------------------------------------------------- /res/DRFON206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON206.png -------------------------------------------------------------------------------- /res/DRFON207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON207.png -------------------------------------------------------------------------------- /res/DRFON208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON208.png -------------------------------------------------------------------------------- /res/DRFON209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON209.png -------------------------------------------------------------------------------- /res/DRFON210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON210.png -------------------------------------------------------------------------------- /res/DRFON211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON211.png -------------------------------------------------------------------------------- /res/DRFON212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON212.png -------------------------------------------------------------------------------- /res/DRFON213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON213.png -------------------------------------------------------------------------------- /res/DRFON214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON214.png -------------------------------------------------------------------------------- /res/DRFON215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON215.png -------------------------------------------------------------------------------- /res/DRFON216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON216.png -------------------------------------------------------------------------------- /res/DRFON217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON217.png -------------------------------------------------------------------------------- /res/DRFON218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON218.png -------------------------------------------------------------------------------- /res/DRFON219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON219.png -------------------------------------------------------------------------------- /res/DRFON220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON220.png -------------------------------------------------------------------------------- /res/DRFON221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON221.png -------------------------------------------------------------------------------- /res/DRFON222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON222.png -------------------------------------------------------------------------------- /res/DRFON223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON223.png -------------------------------------------------------------------------------- /res/DRFON224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON224.png -------------------------------------------------------------------------------- /res/DRFON225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON225.png -------------------------------------------------------------------------------- /res/DRFON226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON226.png -------------------------------------------------------------------------------- /res/DRFON227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON227.png -------------------------------------------------------------------------------- /res/DRFON228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON228.png -------------------------------------------------------------------------------- /res/DRFON229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON229.png -------------------------------------------------------------------------------- /res/DRFON230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON230.png -------------------------------------------------------------------------------- /res/DRFON231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON231.png -------------------------------------------------------------------------------- /res/DRFON232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON232.png -------------------------------------------------------------------------------- /res/DRFON233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON233.png -------------------------------------------------------------------------------- /res/DRFON234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON234.png -------------------------------------------------------------------------------- /res/DRFON235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON235.png -------------------------------------------------------------------------------- /res/DRFON236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON236.png -------------------------------------------------------------------------------- /res/DRFON237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON237.png -------------------------------------------------------------------------------- /res/DRFON238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON238.png -------------------------------------------------------------------------------- /res/DRFON239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON239.png -------------------------------------------------------------------------------- /res/DRFON240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON240.png -------------------------------------------------------------------------------- /res/DRFON241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON241.png -------------------------------------------------------------------------------- /res/DRFON242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON242.png -------------------------------------------------------------------------------- /res/DRFON243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON243.png -------------------------------------------------------------------------------- /res/DRFON244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON244.png -------------------------------------------------------------------------------- /res/DRFON245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON245.png -------------------------------------------------------------------------------- /res/DRFON246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON246.png -------------------------------------------------------------------------------- /res/DRFON247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON247.png -------------------------------------------------------------------------------- /res/DRFON248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON248.png -------------------------------------------------------------------------------- /res/DRFON249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON249.png -------------------------------------------------------------------------------- /res/DRFON250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON250.png -------------------------------------------------------------------------------- /res/DRFON251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON251.png -------------------------------------------------------------------------------- /res/DRFON252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON252.png -------------------------------------------------------------------------------- /res/DRFON253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON253.png -------------------------------------------------------------------------------- /res/DRFON254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON254.png -------------------------------------------------------------------------------- /res/DRFON255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFON255.png -------------------------------------------------------------------------------- /res/DRFONAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFONAM.png -------------------------------------------------------------------------------- /res/DRFONCLR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFONCLR.png -------------------------------------------------------------------------------- /res/DRFONFPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFONFPS.png -------------------------------------------------------------------------------- /res/DRFONPM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFONPM.png -------------------------------------------------------------------------------- /res/DRFONUND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFONUND.png -------------------------------------------------------------------------------- /res/DRFONWRN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRFONWRN.png -------------------------------------------------------------------------------- /res/DRHUD0A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD0A.png -------------------------------------------------------------------------------- /res/DRHUD0B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD0B.png -------------------------------------------------------------------------------- /res/DRHUD1A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD1A.png -------------------------------------------------------------------------------- /res/DRHUD1B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD1B.png -------------------------------------------------------------------------------- /res/DRHUD2A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD2A.png -------------------------------------------------------------------------------- /res/DRHUD2B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD2B.png -------------------------------------------------------------------------------- /res/DRHUD3A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD3A.png -------------------------------------------------------------------------------- /res/DRHUD3B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD3B.png -------------------------------------------------------------------------------- /res/DRHUD4A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD4A.png -------------------------------------------------------------------------------- /res/DRHUD4B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD4B.png -------------------------------------------------------------------------------- /res/DRHUD5A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD5A.png -------------------------------------------------------------------------------- /res/DRHUD5B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD5B.png -------------------------------------------------------------------------------- /res/DRHUD6A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD6A.png -------------------------------------------------------------------------------- /res/DRHUD6B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD6B.png -------------------------------------------------------------------------------- /res/DRHUD7A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD7A.png -------------------------------------------------------------------------------- /res/DRHUD7B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD7B.png -------------------------------------------------------------------------------- /res/DRHUD8A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD8A.png -------------------------------------------------------------------------------- /res/DRHUD8B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD8B.png -------------------------------------------------------------------------------- /res/DRHUD9A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD9A.png -------------------------------------------------------------------------------- /res/DRHUD9B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUD9B.png -------------------------------------------------------------------------------- /res/DRHUDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDE.png -------------------------------------------------------------------------------- /res/DRHUDIA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDIA.png -------------------------------------------------------------------------------- /res/DRHUDIB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDIB.png -------------------------------------------------------------------------------- /res/DRHUDKEY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDKEY.png -------------------------------------------------------------------------------- /res/DRHUDL1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDL1.png -------------------------------------------------------------------------------- /res/DRHUDL2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDL2.png -------------------------------------------------------------------------------- /res/DRHUDNEG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDNEG.png -------------------------------------------------------------------------------- /res/DRHUDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDR.png -------------------------------------------------------------------------------- /res/DRHUDSKU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDSKU.png -------------------------------------------------------------------------------- /res/DRHUDWP1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRHUDWP1.png -------------------------------------------------------------------------------- /res/DRLOGO01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO01.png -------------------------------------------------------------------------------- /res/DRLOGO02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO02.png -------------------------------------------------------------------------------- /res/DRLOGO03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO03.png -------------------------------------------------------------------------------- /res/DRLOGO04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO04.png -------------------------------------------------------------------------------- /res/DRLOGO05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO05.png -------------------------------------------------------------------------------- /res/DRLOGO06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO06.png -------------------------------------------------------------------------------- /res/DRLOGO07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO07.png -------------------------------------------------------------------------------- /res/DRLOGO08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO08.png -------------------------------------------------------------------------------- /res/DRLOGO09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO09.png -------------------------------------------------------------------------------- /res/DRLOGO10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO10.png -------------------------------------------------------------------------------- /res/DRLOGO11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO11.png -------------------------------------------------------------------------------- /res/DRLOGO12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO12.png -------------------------------------------------------------------------------- /res/DRLOGO13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO13.png -------------------------------------------------------------------------------- /res/DRLOGO14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO14.png -------------------------------------------------------------------------------- /res/DRLOGO15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO15.png -------------------------------------------------------------------------------- /res/DRLOGO16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO16.png -------------------------------------------------------------------------------- /res/DRLOGO17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO17.png -------------------------------------------------------------------------------- /res/DRLOGO18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRLOGO18.png -------------------------------------------------------------------------------- /res/DRMAPLST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRMAPLST.png -------------------------------------------------------------------------------- /res/DRMAPST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRMAPST.png -------------------------------------------------------------------------------- /res/DRPLYRST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRPLYRST.png -------------------------------------------------------------------------------- /res/DRTHNLST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRTHNLST.png -------------------------------------------------------------------------------- /res/DRXHAIR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRXHAIR1.png -------------------------------------------------------------------------------- /res/DRXHAIR2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRXHAIR2.png -------------------------------------------------------------------------------- /res/DRXHAIR3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRXHAIR3.png -------------------------------------------------------------------------------- /res/DRXHAIR4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRXHAIR4.png -------------------------------------------------------------------------------- /res/DRXHAIR5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRXHAIR5.png -------------------------------------------------------------------------------- /res/DRXHAIR6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRXHAIR6.png -------------------------------------------------------------------------------- /res/DRXHAIR7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRXHAIR7.png -------------------------------------------------------------------------------- /res/DRXHAIR8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRXHAIR8.png -------------------------------------------------------------------------------- /res/DRXHAIR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DRXHAIR9.png -------------------------------------------------------------------------------- /res/DSCONSOL.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DSCONSOL.wav -------------------------------------------------------------------------------- /res/DSDGACT.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DSDGACT.wav -------------------------------------------------------------------------------- /res/DSDGATK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DSDGATK.wav -------------------------------------------------------------------------------- /res/DSDGDTH.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DSDGDTH.wav -------------------------------------------------------------------------------- /res/DSDGPAIN.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DSDGPAIN.wav -------------------------------------------------------------------------------- /res/DSDGSIT.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DSDGSIT.wav -------------------------------------------------------------------------------- /res/DSSCRSHT.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DSSCRSHT.wav -------------------------------------------------------------------------------- /res/DSSECRET.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/DSSECRET.wav -------------------------------------------------------------------------------- /res/ENDPIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/ENDPIC.png -------------------------------------------------------------------------------- /res/HELP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/HELP.png -------------------------------------------------------------------------------- /res/HELP1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/HELP1.png -------------------------------------------------------------------------------- /res/HELP3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/HELP3.png -------------------------------------------------------------------------------- /res/HELP4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/HELP4.png -------------------------------------------------------------------------------- /res/INTERPI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/INTERPI1.png -------------------------------------------------------------------------------- /res/INTERPI2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/INTERPI2.png -------------------------------------------------------------------------------- /res/INTERPI3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/INTERPI3.png -------------------------------------------------------------------------------- /res/INTERPIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/INTERPIC.png -------------------------------------------------------------------------------- /res/MEDIA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/MEDIA0.png -------------------------------------------------------------------------------- /res/MISFA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/MISFA0.png -------------------------------------------------------------------------------- /res/MISFB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/MISFB0.png -------------------------------------------------------------------------------- /res/M_DOOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/M_DOOM.png -------------------------------------------------------------------------------- /res/M_EPI6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/M_EPI6.png -------------------------------------------------------------------------------- /res/PFUB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/PFUB1.png -------------------------------------------------------------------------------- /res/PFUB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/PFUB2.png -------------------------------------------------------------------------------- /res/PLAYPAL.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/PLAYPAL.pal -------------------------------------------------------------------------------- /res/PSTRA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/PSTRA0.png -------------------------------------------------------------------------------- /res/RSMKA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/RSMKA0.png -------------------------------------------------------------------------------- /res/RSMKB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/RSMKB0.png -------------------------------------------------------------------------------- /res/RSMKC0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/RSMKC0.png -------------------------------------------------------------------------------- /res/RSMKD0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/RSMKD0.png -------------------------------------------------------------------------------- /res/SHT2A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/SHT2A0.png -------------------------------------------------------------------------------- /res/SHT2E0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/SHT2E0.png -------------------------------------------------------------------------------- /res/SIGILIN2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/SIGILIN2.png -------------------------------------------------------------------------------- /res/SIGILINT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/SIGILINT.png -------------------------------------------------------------------------------- /res/SPLSHPAL.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/SPLSHPAL.pal -------------------------------------------------------------------------------- /res/STAMMO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STAMMO.png -------------------------------------------------------------------------------- /res/STAMMO2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STAMMO2.png -------------------------------------------------------------------------------- /res/STBAR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STBAR.png -------------------------------------------------------------------------------- /res/STBAR2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STBAR2.png -------------------------------------------------------------------------------- /res/STBAR3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STBAR3.png -------------------------------------------------------------------------------- /res/STBAR4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STBAR4.png -------------------------------------------------------------------------------- /res/STFGOD0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STFGOD0.png -------------------------------------------------------------------------------- /res/STIMA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STIMA0.png -------------------------------------------------------------------------------- /res/STKEYS6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STKEYS6.png -------------------------------------------------------------------------------- /res/STKEYS7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STKEYS7.png -------------------------------------------------------------------------------- /res/STKEYS8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/STKEYS8.png -------------------------------------------------------------------------------- /res/SWITCHES.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/SWITCHES.lmp -------------------------------------------------------------------------------- /res/TITLEPI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/TITLEPI1.png -------------------------------------------------------------------------------- /res/TITLEPI2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/TITLEPI2.png -------------------------------------------------------------------------------- /res/TITLEPIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/TITLEPIP.png -------------------------------------------------------------------------------- /res/TITLEPIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/TITLEPIT.png -------------------------------------------------------------------------------- /res/TNT1A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/TNT1A0.png -------------------------------------------------------------------------------- /res/VANILLA.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/VANILLA.lmp -------------------------------------------------------------------------------- /res/VICTORY2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/VICTORY2.png -------------------------------------------------------------------------------- /res/WATERMAP.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/WATERMAP.lmp -------------------------------------------------------------------------------- /res/WIMAP0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/WIMAP0.png -------------------------------------------------------------------------------- /res/WIMAP1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/WIMAP1.png -------------------------------------------------------------------------------- /res/WIMAP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/WIMAP2.png -------------------------------------------------------------------------------- /res/WIPERIOD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/WIPERIOD.png -------------------------------------------------------------------------------- /res/WISUCKS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/WISUCKS.png -------------------------------------------------------------------------------- /res/doomretro.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.ico -------------------------------------------------------------------------------- /res/doomretro.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.iconset/icon_128x128.png -------------------------------------------------------------------------------- /res/doomretro.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /res/doomretro.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.iconset/icon_16x16.png -------------------------------------------------------------------------------- /res/doomretro.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /res/doomretro.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.iconset/icon_256x256.png -------------------------------------------------------------------------------- /res/doomretro.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.iconset/icon_32x32.png -------------------------------------------------------------------------------- /res/doomretro.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /res/doomretro.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.iconset/icon_512x512.png -------------------------------------------------------------------------------- /res/doomretro.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/doomretro.wad -------------------------------------------------------------------------------- /res/e1m4b.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/e1m4b.wad -------------------------------------------------------------------------------- /res/e1m8b.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/res/e1m8b.wad -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/Makefile.mingw -------------------------------------------------------------------------------- /src/Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/Makefile.osx -------------------------------------------------------------------------------- /src/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/am_map.c -------------------------------------------------------------------------------- /src/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/am_map.h -------------------------------------------------------------------------------- /src/cJSON/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/cJSON/cJSON.c -------------------------------------------------------------------------------- /src/cJSON/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/cJSON/cJSON.h -------------------------------------------------------------------------------- /src/c_autocomplete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/c_autocomplete.c -------------------------------------------------------------------------------- /src/c_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/c_cmds.c -------------------------------------------------------------------------------- /src/c_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/c_cmds.h -------------------------------------------------------------------------------- /src/c_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/c_console.c -------------------------------------------------------------------------------- /src/c_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/c_console.h -------------------------------------------------------------------------------- /src/d_deh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_deh.c -------------------------------------------------------------------------------- /src/d_deh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_deh.h -------------------------------------------------------------------------------- /src/d_english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_english.h -------------------------------------------------------------------------------- /src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_event.h -------------------------------------------------------------------------------- /src/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_items.c -------------------------------------------------------------------------------- /src/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_items.h -------------------------------------------------------------------------------- /src/d_iwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_iwad.c -------------------------------------------------------------------------------- /src/d_iwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_iwad.h -------------------------------------------------------------------------------- /src/d_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_loop.c -------------------------------------------------------------------------------- /src/d_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_loop.h -------------------------------------------------------------------------------- /src/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_main.c -------------------------------------------------------------------------------- /src/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_main.h -------------------------------------------------------------------------------- /src/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_player.h -------------------------------------------------------------------------------- /src/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_think.h -------------------------------------------------------------------------------- /src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/d_ticcmd.h -------------------------------------------------------------------------------- /src/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/doomdata.h -------------------------------------------------------------------------------- /src/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/doomdef.h -------------------------------------------------------------------------------- /src/doomkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/doomkeys.h -------------------------------------------------------------------------------- /src/doomretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/doomretro.c -------------------------------------------------------------------------------- /src/doomretro.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/doomretro.manifest -------------------------------------------------------------------------------- /src/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/doomstat.c -------------------------------------------------------------------------------- /src/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/doomstat.h -------------------------------------------------------------------------------- /src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/doomtype.h -------------------------------------------------------------------------------- /src/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/dstrings.c -------------------------------------------------------------------------------- /src/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/dstrings.h -------------------------------------------------------------------------------- /src/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/f_finale.c -------------------------------------------------------------------------------- /src/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/f_finale.h -------------------------------------------------------------------------------- /src/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/f_wipe.c -------------------------------------------------------------------------------- /src/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/f_wipe.h -------------------------------------------------------------------------------- /src/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/g_game.c -------------------------------------------------------------------------------- /src/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/g_game.h -------------------------------------------------------------------------------- /src/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/hu_lib.c -------------------------------------------------------------------------------- /src/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/hu_lib.h -------------------------------------------------------------------------------- /src/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/hu_stuff.c -------------------------------------------------------------------------------- /src/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/hu_stuff.h -------------------------------------------------------------------------------- /src/i_colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_colors.c -------------------------------------------------------------------------------- /src/i_colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_colors.h -------------------------------------------------------------------------------- /src/i_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_controller.c -------------------------------------------------------------------------------- /src/i_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_controller.h -------------------------------------------------------------------------------- /src/i_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_music.c -------------------------------------------------------------------------------- /src/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_sound.c -------------------------------------------------------------------------------- /src/i_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_swap.h -------------------------------------------------------------------------------- /src/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_system.c -------------------------------------------------------------------------------- /src/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_system.h -------------------------------------------------------------------------------- /src/i_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_timer.c -------------------------------------------------------------------------------- /src/i_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_timer.h -------------------------------------------------------------------------------- /src/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_video.c -------------------------------------------------------------------------------- /src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_video.h -------------------------------------------------------------------------------- /src/i_winmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_winmusic.c -------------------------------------------------------------------------------- /src/i_winmusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/i_winmusic.h -------------------------------------------------------------------------------- /src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/info.c -------------------------------------------------------------------------------- /src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/info.h -------------------------------------------------------------------------------- /src/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_argv.c -------------------------------------------------------------------------------- /src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_argv.h -------------------------------------------------------------------------------- /src/m_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_array.h -------------------------------------------------------------------------------- /src/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_bbox.c -------------------------------------------------------------------------------- /src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_bbox.h -------------------------------------------------------------------------------- /src/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_cheat.c -------------------------------------------------------------------------------- /src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_cheat.h -------------------------------------------------------------------------------- /src/m_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_config.c -------------------------------------------------------------------------------- /src/m_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_config.h -------------------------------------------------------------------------------- /src/m_controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_controls.c -------------------------------------------------------------------------------- /src/m_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_controls.h -------------------------------------------------------------------------------- /src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_fixed.h -------------------------------------------------------------------------------- /src/m_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_font.c -------------------------------------------------------------------------------- /src/m_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_font.h -------------------------------------------------------------------------------- /src/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_menu.c -------------------------------------------------------------------------------- /src/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_menu.h -------------------------------------------------------------------------------- /src/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_misc.c -------------------------------------------------------------------------------- /src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_misc.h -------------------------------------------------------------------------------- /src/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_random.c -------------------------------------------------------------------------------- /src/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/m_random.h -------------------------------------------------------------------------------- /src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/md5.c -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/memio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/memio.c -------------------------------------------------------------------------------- /src/memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/memio.h -------------------------------------------------------------------------------- /src/midifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/midifile.c -------------------------------------------------------------------------------- /src/midifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/midifile.h -------------------------------------------------------------------------------- /src/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/miniz/LICENSE -------------------------------------------------------------------------------- /src/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/miniz/miniz.c -------------------------------------------------------------------------------- /src/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/miniz/miniz.h -------------------------------------------------------------------------------- /src/mus2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/mus2mid.c -------------------------------------------------------------------------------- /src/mus2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/mus2mid.h -------------------------------------------------------------------------------- /src/p_ceiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_ceiling.c -------------------------------------------------------------------------------- /src/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_doors.c -------------------------------------------------------------------------------- /src/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_enemy.c -------------------------------------------------------------------------------- /src/p_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_fix.c -------------------------------------------------------------------------------- /src/p_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_fix.h -------------------------------------------------------------------------------- /src/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_floor.c -------------------------------------------------------------------------------- /src/p_genlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_genlin.c -------------------------------------------------------------------------------- /src/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_inter.c -------------------------------------------------------------------------------- /src/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_inter.h -------------------------------------------------------------------------------- /src/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_lights.c -------------------------------------------------------------------------------- /src/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_local.h -------------------------------------------------------------------------------- /src/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_map.c -------------------------------------------------------------------------------- /src/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_maputl.c -------------------------------------------------------------------------------- /src/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_mobj.c -------------------------------------------------------------------------------- /src/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_mobj.h -------------------------------------------------------------------------------- /src/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_plats.c -------------------------------------------------------------------------------- /src/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_pspr.c -------------------------------------------------------------------------------- /src/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_pspr.h -------------------------------------------------------------------------------- /src/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_saveg.c -------------------------------------------------------------------------------- /src/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_saveg.h -------------------------------------------------------------------------------- /src/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_setup.c -------------------------------------------------------------------------------- /src/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_setup.h -------------------------------------------------------------------------------- /src/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_sight.c -------------------------------------------------------------------------------- /src/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_spec.c -------------------------------------------------------------------------------- /src/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_spec.h -------------------------------------------------------------------------------- /src/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_switch.c -------------------------------------------------------------------------------- /src/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_telept.c -------------------------------------------------------------------------------- /src/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_tick.c -------------------------------------------------------------------------------- /src/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_tick.h -------------------------------------------------------------------------------- /src/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/p_user.c -------------------------------------------------------------------------------- /src/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_bsp.c -------------------------------------------------------------------------------- /src/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_bsp.h -------------------------------------------------------------------------------- /src/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_data.c -------------------------------------------------------------------------------- /src/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_data.h -------------------------------------------------------------------------------- /src/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_defs.h -------------------------------------------------------------------------------- /src/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_draw.c -------------------------------------------------------------------------------- /src/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_draw.h -------------------------------------------------------------------------------- /src/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_local.h -------------------------------------------------------------------------------- /src/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_main.c -------------------------------------------------------------------------------- /src/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_main.h -------------------------------------------------------------------------------- /src/r_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_patch.c -------------------------------------------------------------------------------- /src/r_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_patch.h -------------------------------------------------------------------------------- /src/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_plane.c -------------------------------------------------------------------------------- /src/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_plane.h -------------------------------------------------------------------------------- /src/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_segs.c -------------------------------------------------------------------------------- /src/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_segs.h -------------------------------------------------------------------------------- /src/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_sky.c -------------------------------------------------------------------------------- /src/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_sky.h -------------------------------------------------------------------------------- /src/r_skydefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_skydefs.c -------------------------------------------------------------------------------- /src/r_skydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_skydefs.h -------------------------------------------------------------------------------- /src/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_state.h -------------------------------------------------------------------------------- /src/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_things.c -------------------------------------------------------------------------------- /src/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/r_things.h -------------------------------------------------------------------------------- /src/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/s_sound.c -------------------------------------------------------------------------------- /src/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/s_sound.h -------------------------------------------------------------------------------- /src/sc_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/sc_man.c -------------------------------------------------------------------------------- /src/sc_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/sc_man.h -------------------------------------------------------------------------------- /src/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/sounds.c -------------------------------------------------------------------------------- /src/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/sounds.h -------------------------------------------------------------------------------- /src/sprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/sprites.c -------------------------------------------------------------------------------- /src/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/sprites.h -------------------------------------------------------------------------------- /src/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/st_lib.c -------------------------------------------------------------------------------- /src/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/st_lib.h -------------------------------------------------------------------------------- /src/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/st_stuff.c -------------------------------------------------------------------------------- /src/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/st_stuff.h -------------------------------------------------------------------------------- /src/states.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/states.c -------------------------------------------------------------------------------- /src/states.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/states.h -------------------------------------------------------------------------------- /src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/tables.h -------------------------------------------------------------------------------- /src/v_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/v_data.c -------------------------------------------------------------------------------- /src/v_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/v_data.h -------------------------------------------------------------------------------- /src/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/v_video.c -------------------------------------------------------------------------------- /src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/v_video.h -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/version.c -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/version.h -------------------------------------------------------------------------------- /src/w_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/w_file.c -------------------------------------------------------------------------------- /src/w_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/w_file.h -------------------------------------------------------------------------------- /src/w_merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/w_merge.c -------------------------------------------------------------------------------- /src/w_merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/w_merge.h -------------------------------------------------------------------------------- /src/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/w_wad.c -------------------------------------------------------------------------------- /src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/w_wad.h -------------------------------------------------------------------------------- /src/wi_interlvl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/wi_interlvl.c -------------------------------------------------------------------------------- /src/wi_interlvl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/wi_interlvl.h -------------------------------------------------------------------------------- /src/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/wi_stuff.c -------------------------------------------------------------------------------- /src/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/wi_stuff.h -------------------------------------------------------------------------------- /src/win32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/win32.rc -------------------------------------------------------------------------------- /src/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/z_zone.c -------------------------------------------------------------------------------- /src/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/src/z_zone.h -------------------------------------------------------------------------------- /xcode/SDL2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /xcode/SDL2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /xcode/SDL2.framework/SDL2: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2 -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Frameworks/hidapi.framework/hidapi: -------------------------------------------------------------------------------- 1 | Versions/Current/hidapi -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2.framework/Versions/A/Headers/SDL_bits.h -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2.framework/Versions/A/Headers/SDL_log.h -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Headers/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2.framework/Versions/A/Headers/SDL_misc.h -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2.framework/Versions/A/Headers/SDL_name.h -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2.framework/Versions/A/Headers/SDL_quit.h -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2.framework/Versions/A/Headers/SDL_rect.h -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/A/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2.framework/Versions/A/SDL2 -------------------------------------------------------------------------------- /xcode/SDL2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /xcode/SDL2_image.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /xcode/SDL2_image.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /xcode/SDL2_image.framework/SDL2_image: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2_image -------------------------------------------------------------------------------- /xcode/SDL2_image.framework/Versions/A/SDL2_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2_image.framework/Versions/A/SDL2_image -------------------------------------------------------------------------------- /xcode/SDL2_image.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /xcode/SDL2_mixer.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /xcode/SDL2_mixer.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /xcode/SDL2_mixer.framework/SDL2_mixer: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2_mixer -------------------------------------------------------------------------------- /xcode/SDL2_mixer.framework/Versions/A/Frameworks/modplug.framework/Resources/LICENSE.modplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /xcode/SDL2_mixer.framework/Versions/A/SDL2_mixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/SDL2_mixer.framework/Versions/A/SDL2_mixer -------------------------------------------------------------------------------- /xcode/SDL2_mixer.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /xcode/doomretroapp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/doomretroapp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xcode/doomretroapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/doomretroapp/Info.plist -------------------------------------------------------------------------------- /xcode/doomretroapp/doomretro.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradharding/doomretro/HEAD/xcode/doomretroapp/doomretro.icns --------------------------------------------------------------------------------