├── .circleci └── config.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Android.mk ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── SRB2.cbp ├── SRB2_Debug.props ├── SRB2_Release.props ├── SRB2_common.props ├── Srb2.dev ├── android ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── Android.mk ├── AndroidManifest.xml ├── default.properties ├── gen │ └── org │ │ └── srb2 │ │ └── R.java ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── org │ └── srb2 │ ├── GameThread.java │ ├── SRB2Game.java │ └── nativecode │ ├── Main.java │ ├── SRB2.java │ └── Video.java ├── appveyor.yml ├── assets ├── .gitignore ├── CMakeLists.txt ├── LICENSE-3RD-PARTY.txt ├── LICENSE.txt ├── README.txt └── debian-template │ ├── README.Debian │ ├── README.source │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ └── source │ ├── format │ └── options ├── cmake ├── Modules │ ├── CMakeASM_YASMInformation.cmake │ ├── CMakeDetermineASM_YASMCompiler.cmake │ ├── CMakeTestASM_YASMCompiler.cmake │ ├── FindGME.cmake │ ├── FindOPENMPT.cmake │ ├── FindSDL2.cmake │ ├── FindSDL2_main.cmake │ ├── FindSDL2_mixer.cmake │ ├── GitUtilities.cmake │ └── LibFindMacros.cmake ├── launch-c.in └── launch-cxx.in ├── comptime.bat ├── comptime.mk ├── comptime.props ├── comptime.sh ├── cpdebug.mk ├── debian-template ├── README.Debian ├── README.source ├── changelog ├── compat ├── control ├── copyright ├── docs ├── rules ├── source │ ├── format │ └── options └── srb2.desktop ├── debian_template.sh ├── deployer ├── appveyor │ └── deployer.bat └── travis │ ├── deployer.sh │ ├── deployer_build.sh │ ├── deployer_defaults.sh │ ├── deployer_dput.sh │ └── deployer_ftp.sh ├── doc ├── .gitignore ├── Doublescan.txt ├── Item Ranges.txt ├── Linedef Ranges.txt ├── SSN-Todo.xls ├── Sector Ranges.txt ├── copying ├── faq.txt ├── manual │ └── manual.htm ├── rules.txt ├── source.txt └── specials.html ├── extras ├── conf │ ├── SRB2-22.cfg │ ├── Srb2-20db.cfg │ ├── Srb2-20wb.cfg │ ├── Srb2-21db.cfg │ ├── Srb2-21wb.cfg │ ├── srb2-21db2.cfg │ ├── srb2.wcf │ ├── srb2.ygd │ ├── srb2_db.cfg │ └── udb │ │ ├── Includes │ │ ├── Game_SRB222.cfg │ │ ├── SRB222_common.cfg │ │ ├── SRB222_linedefs.cfg │ │ ├── SRB222_misc.cfg │ │ ├── SRB222_sectors.cfg │ │ └── SRB222_things.cfg │ │ ├── SRB2_22Doom.cfg │ │ └── SRB2_22UDMF.cfg └── wminput.conf ├── libs ├── .gitattributes ├── .gitignore ├── DLL-README.txt ├── FMOD.props ├── SDL2.props ├── SDL2 │ ├── BUGS.txt │ ├── COPYING.txt │ ├── CREDITS.txt │ ├── INSTALL.txt │ ├── Makefile │ ├── README-SDL.txt │ ├── README.txt │ ├── SRB2NOTE.txt │ ├── WhatsNew.txt │ ├── docs │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gesture.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-linux.md │ │ ├── README-macosx.md │ │ ├── README-nacl.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-touch.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ └── doxyfile │ ├── i686-w64-mingw32 │ │ ├── bin │ │ │ ├── SDL2.dll │ │ │ └── sdl2-config │ │ ├── include │ │ │ └── SDL2 │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.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_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.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 │ │ │ ├── cmake │ │ │ │ └── SDL2 │ │ │ │ │ └── sdl2-config.cmake │ │ │ ├── libSDL2.a │ │ │ ├── libSDL2.dll.a │ │ │ ├── libSDL2.la │ │ │ ├── libSDL2_test.a │ │ │ ├── libSDL2_test.la │ │ │ ├── libSDL2main.a │ │ │ ├── libSDL2main.la │ │ │ └── pkgconfig │ │ │ │ └── sdl2.pc │ │ └── share │ │ │ └── aclocal │ │ │ └── sdl2.m4 │ ├── 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.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_macosx.h.orig │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.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_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.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 │ │ ├── ARM │ │ │ ├── SDL2.dll │ │ │ └── SDL2.lib │ │ ├── ARM64 │ │ │ ├── SDL2.dll │ │ │ └── SDL2.lib │ │ ├── x64 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.lib │ │ │ ├── SDL2main.lib │ │ │ └── SDL2test.lib │ │ └── x86 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.lib │ │ │ ├── SDL2main.lib │ │ │ └── SDL2test.lib │ ├── test │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile.in │ │ ├── Makefile.os2 │ │ ├── README │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── axis.bmp │ │ ├── button.bmp │ │ ├── checkkeys.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.in │ │ ├── controllermap.bmp │ │ ├── controllermap.c │ │ ├── emscripten │ │ │ └── joystick-pre.js │ │ ├── gcc-fat.sh │ │ ├── icon.bmp │ │ ├── loopwave.c │ │ ├── loopwavequeue.c │ │ ├── moose.dat │ │ ├── nacl │ │ │ ├── Makefile │ │ │ ├── background.js │ │ │ ├── common.js │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── picture.xbm │ │ ├── relative_mode.markdown │ │ ├── sample.bmp │ │ ├── sample.wav │ │ ├── shapes │ │ │ ├── p01_shape24.bmp │ │ │ ├── p01_shape32alpha.bmp │ │ │ ├── p01_shape8.bmp │ │ │ ├── p02_shape24.bmp │ │ │ ├── p02_shape32alpha.bmp │ │ │ ├── p02_shape8.bmp │ │ │ ├── p03_shape24.bmp │ │ │ ├── p03_shape8.bmp │ │ │ ├── p04_shape1.bmp │ │ │ ├── p04_shape24.bmp │ │ │ ├── p04_shape32alpha.bmp │ │ │ ├── p04_shape8.bmp │ │ │ ├── p05_shape8.bmp │ │ │ ├── p06_shape1alpha.bmp │ │ │ ├── p06_shape24.bmp │ │ │ ├── p06_shape32alpha.bmp │ │ │ ├── p06_shape8.bmp │ │ │ ├── p07_shape24.bmp │ │ │ ├── p07_shape32alpha.bmp │ │ │ ├── p07_shape8.bmp │ │ │ ├── p08_shape24.bmp │ │ │ ├── p08_shape32alpha.bmp │ │ │ ├── p08_shape8.bmp │ │ │ ├── p09_shape24.bmp │ │ │ ├── p09_shape32alpha.bmp │ │ │ ├── p09_shape8.bmp │ │ │ ├── p10_shape1.bmp │ │ │ ├── p10_shape24.bmp │ │ │ ├── p10_shape32alpha.bmp │ │ │ ├── p10_shape8.bmp │ │ │ ├── p11_shape24.bmp │ │ │ ├── p11_shape32alpha.bmp │ │ │ ├── p11_shape8.bmp │ │ │ ├── p12_shape24.bmp │ │ │ ├── p12_shape8.bmp │ │ │ ├── p13_shape24.bmp │ │ │ ├── p13_shape32alpha.bmp │ │ │ ├── p13_shape8.bmp │ │ │ ├── p14_shape24.bmp │ │ │ ├── p14_shape8.bmp │ │ │ ├── p15_shape24.bmp │ │ │ ├── p15_shape32alpha.bmp │ │ │ ├── p15_shape8.bmp │ │ │ ├── p16_shape1.bmp │ │ │ ├── p16_shape24.bmp │ │ │ ├── p16_shape8.bmp │ │ │ ├── trollface_24.bmp │ │ │ └── trollface_32alpha.bmp │ │ ├── testatomic.c │ │ ├── testaudiocapture.c │ │ ├── testaudiohotplug.c │ │ ├── testaudioinfo.c │ │ ├── testautomation.c │ │ ├── testautomation_audio.c │ │ ├── testautomation_clipboard.c │ │ ├── testautomation_events.c │ │ ├── testautomation_hints.c │ │ ├── testautomation_keyboard.c │ │ ├── testautomation_main.c │ │ ├── testautomation_mouse.c │ │ ├── testautomation_pixels.c │ │ ├── testautomation_platform.c │ │ ├── testautomation_rect.c │ │ ├── testautomation_render.c │ │ ├── testautomation_rwops.c │ │ ├── testautomation_sdltest.c │ │ ├── testautomation_stdlib.c │ │ ├── testautomation_suites.h │ │ ├── testautomation_surface.c │ │ ├── testautomation_syswm.c │ │ ├── testautomation_timer.c │ │ ├── testautomation_video.c │ │ ├── testbounds.c │ │ ├── testcustomcursor.c │ │ ├── testdisplayinfo.c │ │ ├── testdraw2.c │ │ ├── testdrawchessboard.c │ │ ├── testdropfile.c │ │ ├── testerror.c │ │ ├── testfile.c │ │ ├── testfilesystem.c │ │ ├── testgamecontroller.c │ │ ├── testgesture.c │ │ ├── testgl2.c │ │ ├── testgles.c │ │ ├── testgles2.c │ │ ├── testhaptic.c │ │ ├── testhittesting.c │ │ ├── testhotplug.c │ │ ├── testiconv.c │ │ ├── testime.c │ │ ├── testintersections.c │ │ ├── testjoystick.c │ │ ├── testkeys.c │ │ ├── testloadso.c │ │ ├── testlock.c │ │ ├── testmessage.c │ │ ├── testmultiaudio.c │ │ ├── testnative.c │ │ ├── testnative.h │ │ ├── testnativecocoa.m │ │ ├── testnativew32.c │ │ ├── testnativex11.c │ │ ├── testoverlay2.c │ │ ├── testplatform.c │ │ ├── testpower.c │ │ ├── testqsort.c │ │ ├── testrelative.c │ │ ├── testrendercopyex.c │ │ ├── testrendertarget.c │ │ ├── testresample.c │ │ ├── testrumble.c │ │ ├── testscale.c │ │ ├── testsem.c │ │ ├── testsensor.c │ │ ├── testshader.c │ │ ├── testshape.c │ │ ├── testsprite2.c │ │ ├── testspriteminimal.c │ │ ├── teststreaming.c │ │ ├── testthread.c │ │ ├── testtimer.c │ │ ├── testver.c │ │ ├── testviewport.c │ │ ├── testvulkan.c │ │ ├── testwm2.c │ │ ├── testyuv.bmp │ │ ├── testyuv.c │ │ ├── testyuv_cvt.c │ │ ├── testyuv_cvt.h │ │ ├── torturethread.c │ │ └── utf8.txt │ └── x86_64-w64-mingw32 │ │ ├── bin │ │ ├── SDL2.dll │ │ └── sdl2-config │ │ ├── include │ │ └── SDL2 │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.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_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.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 │ │ ├── cmake │ │ │ └── SDL2 │ │ │ │ └── sdl2-config.cmake │ │ ├── libSDL2.a │ │ ├── libSDL2.dll.a │ │ ├── libSDL2.la │ │ ├── libSDL2_test.a │ │ ├── libSDL2_test.la │ │ ├── libSDL2main.a │ │ ├── libSDL2main.la │ │ └── pkgconfig │ │ │ └── sdl2.pc │ │ └── share │ │ └── aclocal │ │ └── sdl2.m4 ├── SDL2_mixer │ ├── CHANGES.txt │ ├── COPYING.txt │ ├── Makefile │ ├── README.txt │ ├── SRB2NOTE.txt │ ├── i686-w64-mingw32 │ │ ├── bin │ │ │ ├── LICENSE.FLAC.txt │ │ │ ├── LICENSE.modplug.txt │ │ │ ├── LICENSE.mpg123.txt │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ ├── LICENSE.opus.txt │ │ │ ├── LICENSE.opusfile.txt │ │ │ ├── SDL2_mixer.dll │ │ │ ├── libFLAC-8.dll │ │ │ ├── libmodplug-1.dll │ │ │ ├── libmpg123-0.dll │ │ │ ├── libogg-0.dll │ │ │ ├── libopus-0.dll │ │ │ ├── libopusfile-0.dll │ │ │ ├── libvorbis-0.dll │ │ │ └── libvorbisfile-3.dll │ │ ├── include │ │ │ └── SDL2 │ │ │ │ └── SDL_mixer.h │ │ └── lib │ │ │ ├── libSDL2_mixer.a │ │ │ ├── libSDL2_mixer.dll.a │ │ │ ├── libSDL2_mixer.la │ │ │ └── pkgconfig │ │ │ └── SDL2_mixer.pc │ ├── include │ │ └── SDL_mixer.h │ ├── lib │ │ ├── ARM │ │ │ └── SDL2_mixer.lib │ │ ├── ARM64 │ │ │ ├── SDL2_mixer.dll │ │ │ └── SDL2_mixer.lib │ │ ├── x64 │ │ │ ├── LICENSE.FLAC.txt │ │ │ ├── LICENSE.modplug.txt │ │ │ ├── LICENSE.mpg123.txt │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ ├── LICENSE.opus.txt │ │ │ ├── LICENSE.opusfile.txt │ │ │ ├── SDL2_mixer.dll │ │ │ ├── SDL2_mixer.lib │ │ │ ├── libFLAC-8.dll │ │ │ ├── libmodplug-1.dll │ │ │ ├── libmpg123-0.dll │ │ │ ├── libogg-0.dll │ │ │ ├── libopus-0.dll │ │ │ ├── libopusfile-0.dll │ │ │ ├── libvorbis-0.dll │ │ │ └── libvorbisfile-3.dll │ │ └── x86 │ │ │ ├── LICENSE.FLAC.txt │ │ │ ├── LICENSE.modplug.txt │ │ │ ├── LICENSE.mpg123.txt │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ ├── LICENSE.opus.txt │ │ │ ├── LICENSE.opusfile.txt │ │ │ ├── SDL2_mixer.dll │ │ │ ├── SDL2_mixer.lib │ │ │ ├── libFLAC-8.dll │ │ │ ├── libmodplug-1.dll │ │ │ ├── libmpg123-0.dll │ │ │ ├── libogg-0.dll │ │ │ ├── libopus-0.dll │ │ │ ├── libopusfile-0.dll │ │ │ ├── libvorbis-0.dll │ │ │ └── libvorbisfile-3.dll │ └── x86_64-w64-mingw32 │ │ ├── bin │ │ ├── LICENSE.FLAC.txt │ │ ├── LICENSE.modplug.txt │ │ ├── LICENSE.mpg123.txt │ │ ├── LICENSE.ogg-vorbis.txt │ │ ├── LICENSE.opus.txt │ │ ├── LICENSE.opusfile.txt │ │ ├── SDL2_mixer.dll │ │ ├── libFLAC-8.dll │ │ ├── libmodplug-1.dll │ │ ├── libmpg123-0.dll │ │ ├── libogg-0.dll │ │ ├── libopus-0.dll │ │ ├── libopusfile-0.dll │ │ ├── libvorbis-0.dll │ │ └── libvorbisfile-3.dll │ │ ├── include │ │ └── SDL2 │ │ │ └── SDL_mixer.h │ │ └── lib │ │ ├── libSDL2_mixer.a │ │ ├── libSDL2_mixer.dll.a │ │ ├── libSDL2_mixer.la │ │ └── pkgconfig │ │ └── SDL2_mixer.pc ├── SDLMixerX │ ├── CHANGES.X.txt │ ├── CHANGES.txt │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── GPLv2.txt │ ├── GPLv3.txt │ ├── README.txt │ ├── SDL2_mixer_ext.License.txt │ ├── SRB2Note.txt │ ├── SRB2Note_cmakeflags.png │ ├── i686-w64-mingw32 │ │ ├── bin │ │ │ ├── SDL2_mixer_ext.dll │ │ │ ├── libfluidsynth-2.dll │ │ │ ├── libgcc_s_sjlj-1.dll │ │ │ └── libstdc++-6.dll │ │ ├── include │ │ │ └── SDL2 │ │ │ │ ├── SDL_mixer_ext.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ └── lib │ │ │ ├── libSDL2_mixer_ext-static.a │ │ │ └── libSDL2_mixer_ext.dll.a │ └── x86_64-w64-mingw32 │ │ ├── bin │ │ ├── SDL2_mixer_ext.dll │ │ ├── libfluidsynth-2.dll │ │ ├── libgcc_s_sjlj-1.dll │ │ └── libstdc++-6.dll │ │ ├── include │ │ └── SDL2 │ │ │ ├── SDL_mixer_ext.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ └── lib │ │ └── libSDL2_mixer_ext.dll.a ├── SDL_mixer.props ├── curl │ ├── CHANGES │ ├── include │ │ └── curl │ │ │ ├── curl.h │ │ │ ├── curlbuild.h │ │ │ ├── curlrules.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ ├── typecheck-gcc.h │ │ │ ├── types.h │ │ │ └── urlapi.h │ ├── lib32 │ │ ├── libcurl.a │ │ ├── libcurl.dll │ │ └── libcurl.dll.a │ └── lib64 │ │ ├── libcurl-x64.dll │ │ ├── libcurl.a │ │ └── libcurl.dll.a ├── dll-binaries │ ├── i686 │ │ ├── Old │ │ │ ├── fmod.dll │ │ │ ├── fmodexL.dll │ │ │ ├── libgcc_s_dw2-1.dll │ │ │ └── libintl-8.dll │ │ ├── exchndl.dll │ │ ├── fmodex.dll │ │ ├── libgme.dll │ │ └── mgwhelp.dll │ └── x86_64 │ │ ├── Old │ │ ├── fmod64.dll │ │ └── fmodexL64.dll │ │ ├── exchndl.dll │ │ ├── fmodex64.dll │ │ ├── libgme.dll │ │ └── mgwhelp.dll ├── fmodex │ ├── inc │ │ ├── fmod.h │ │ ├── fmod_codec.h │ │ ├── fmod_dsp.h │ │ ├── fmod_errors.h │ │ ├── fmod_memoryinfo.h │ │ └── fmod_output.h │ └── lib │ │ ├── fmodex64_vc.lib │ │ ├── fmodexL64_vc.lib │ │ ├── fmodexL_bc.lib │ │ ├── fmodexL_lcc.lib │ │ ├── fmodexL_vc.lib │ │ ├── fmodex_bc.lib │ │ ├── fmodex_lcc.lib │ │ ├── fmodex_vc.lib │ │ ├── libfmodex.a │ │ ├── libfmodexL.a │ │ └── which library do I use.txt ├── gettext │ ├── bin32 │ │ ├── autopoint │ │ ├── envsubst.exe │ │ ├── gettext.exe │ │ ├── gettext.sh │ │ ├── gettextize │ │ ├── libasprintf-0.dll │ │ ├── libgcc_s_sjlj-1.dll │ │ ├── libgettextlib-0-18-1.dll │ │ ├── libgettextpo-0.dll │ │ ├── libgettextsrc-0-18-1.dll │ │ ├── libintl-8.dll │ │ ├── msgattrib.exe │ │ ├── msgcat.exe │ │ ├── msgcmp.exe │ │ ├── msgcomm.exe │ │ ├── msgconv.exe │ │ ├── msgen.exe │ │ ├── msgexec.exe │ │ ├── msgfilter.exe │ │ ├── msgfmt.exe │ │ ├── msggrep.exe │ │ ├── msginit.exe │ │ ├── msgmerge.exe │ │ ├── msgunfmt.exe │ │ ├── msguniq.exe │ │ ├── ngettext.exe │ │ ├── recode-sr-latin.exe │ │ └── xgettext.exe │ ├── bin64 │ │ ├── autopoint │ │ ├── envsubst.exe │ │ ├── gettext.exe │ │ ├── gettext.sh │ │ ├── gettextize │ │ ├── msgattrib.exe │ │ ├── msgcat.exe │ │ ├── msgcmp.exe │ │ ├── msgcomm.exe │ │ ├── msgconv.exe │ │ ├── msgen.exe │ │ ├── msgexec.exe │ │ ├── msgfilter.exe │ │ ├── msgfmt.exe │ │ ├── msggrep.exe │ │ ├── msginit.exe │ │ ├── msgmerge.exe │ │ ├── msgunfmt.exe │ │ ├── msguniq.exe │ │ ├── ngettext.exe │ │ ├── recode-sr-latin.exe │ │ └── xgettext.exe │ ├── gettext-0.18.1.1-tml.patch │ ├── include32 │ │ ├── autosprintf.h │ │ ├── gettext-po.h │ │ └── libintl.h │ ├── include64 │ │ ├── autosprintf.h │ │ ├── gettext-po.h │ │ └── libintl.h │ ├── lib32 │ │ ├── gettext │ │ │ ├── hostname.exe │ │ │ ├── project-id │ │ │ ├── urlget.exe │ │ │ └── user-email │ │ ├── libasprintf.dll.a │ │ ├── libgettextlib.dll.a │ │ ├── libgettextpo.dll.a │ │ ├── libgettextsrc.dll.a │ │ └── libintl.dll.a │ └── lib64 │ │ ├── gettext │ │ ├── hostname.exe │ │ ├── project-id │ │ ├── urlget.exe │ │ └── user-email │ │ ├── libasprintf.a │ │ ├── libgettextpo.a │ │ └── libintl.a ├── gme │ ├── CMakeLists.txt │ ├── changes.txt │ ├── demo │ │ ├── CMakeLists.txt │ │ ├── Wave_Writer.cpp │ │ ├── Wave_Writer.h │ │ ├── basics.c │ │ ├── cpp_basics.cpp │ │ └── features.c │ ├── design.txt │ ├── gme.txt │ ├── gme │ │ ├── Ay_Apu.cpp │ │ ├── Ay_Apu.h │ │ ├── Ay_Cpu.cpp │ │ ├── Ay_Cpu.h │ │ ├── Ay_Emu.cpp │ │ ├── Ay_Emu.h │ │ ├── Blip_Buffer.cpp │ │ ├── Blip_Buffer.h │ │ ├── CMakeLists.txt │ │ ├── Classic_Emu.cpp │ │ ├── Classic_Emu.h │ │ ├── Data_Reader.cpp │ │ ├── Data_Reader.h │ │ ├── Dual_Resampler.cpp │ │ ├── Dual_Resampler.h │ │ ├── Effects_Buffer.cpp │ │ ├── Effects_Buffer.h │ │ ├── Fir_Resampler.cpp │ │ ├── Fir_Resampler.h │ │ ├── Gb_Apu.cpp │ │ ├── Gb_Apu.h │ │ ├── Gb_Cpu.cpp │ │ ├── Gb_Cpu.h │ │ ├── Gb_Oscs.cpp │ │ ├── Gb_Oscs.h │ │ ├── Gbs_Emu.cpp │ │ ├── Gbs_Emu.h │ │ ├── Gme_File.cpp │ │ ├── Gme_File.h │ │ ├── Gym_Emu.cpp │ │ ├── Gym_Emu.h │ │ ├── Hes_Apu.cpp │ │ ├── Hes_Apu.h │ │ ├── Hes_Cpu.cpp │ │ ├── Hes_Cpu.h │ │ ├── Hes_Emu.cpp │ │ ├── Hes_Emu.h │ │ ├── Kss_Cpu.cpp │ │ ├── Kss_Cpu.h │ │ ├── Kss_Emu.cpp │ │ ├── Kss_Emu.h │ │ ├── Kss_Scc_Apu.cpp │ │ ├── Kss_Scc_Apu.h │ │ ├── M3u_Playlist.cpp │ │ ├── M3u_Playlist.h │ │ ├── Multi_Buffer.cpp │ │ ├── Multi_Buffer.h │ │ ├── Music_Emu.cpp │ │ ├── Music_Emu.h │ │ ├── Nes_Apu.cpp │ │ ├── Nes_Apu.h │ │ ├── Nes_Cpu.cpp │ │ ├── Nes_Cpu.h │ │ ├── Nes_Fme7_Apu.cpp │ │ ├── Nes_Fme7_Apu.h │ │ ├── Nes_Namco_Apu.cpp │ │ ├── Nes_Namco_Apu.h │ │ ├── Nes_Oscs.cpp │ │ ├── Nes_Oscs.h │ │ ├── Nes_Vrc6_Apu.cpp │ │ ├── Nes_Vrc6_Apu.h │ │ ├── Nsf_Emu.cpp │ │ ├── Nsf_Emu.h │ │ ├── Nsfe_Emu.cpp │ │ ├── Nsfe_Emu.h │ │ ├── Sap_Apu.cpp │ │ ├── Sap_Apu.h │ │ ├── Sap_Cpu.cpp │ │ ├── Sap_Cpu.h │ │ ├── Sap_Emu.cpp │ │ ├── Sap_Emu.h │ │ ├── Sms_Apu.cpp │ │ ├── Sms_Apu.h │ │ ├── Sms_Oscs.h │ │ ├── Snes_Spc.cpp │ │ ├── Snes_Spc.h │ │ ├── Spc_Cpu.cpp │ │ ├── Spc_Cpu.h │ │ ├── Spc_Dsp.cpp │ │ ├── Spc_Dsp.h │ │ ├── Spc_Emu.cpp │ │ ├── Spc_Emu.h │ │ ├── Spc_Filter.cpp │ │ ├── Spc_Filter.h │ │ ├── Vgm_Emu.cpp │ │ ├── Vgm_Emu.h │ │ ├── Vgm_Emu_Impl.cpp │ │ ├── Vgm_Emu_Impl.h │ │ ├── Ym2413_Emu.cpp │ │ ├── Ym2413_Emu.h │ │ ├── Ym2612_Emu.cpp │ │ ├── Ym2612_Emu.h │ │ ├── blargg_common.h │ │ ├── blargg_config.h │ │ ├── blargg_endian.h │ │ ├── blargg_source.h │ │ ├── gb_cpu_io.h │ │ ├── gme.cpp │ │ ├── gme.h │ │ ├── gme_types.h │ │ ├── gme_types.h.in │ │ ├── hes_cpu_io.h │ │ ├── libgme.pc.in │ │ ├── nes_cpu_io.h │ │ └── sap_cpu_io.h │ ├── include │ │ └── gme │ │ │ └── gme.h │ ├── license.txt │ ├── player │ │ ├── Audio_Scope.cpp │ │ ├── Audio_Scope.h │ │ ├── CMakeLists.txt │ │ ├── Music_Player.cpp │ │ ├── Music_Player.h │ │ └── player.cpp │ ├── readme.txt │ ├── test.m3u │ ├── test.nsf │ ├── win32 │ │ └── libgme.dll.a │ └── win64 │ │ └── libgme.dll.a ├── libgme.props ├── libopenmpt.props ├── libopenmpt │ ├── LICENSE.txt │ ├── Licenses │ │ ├── License.Vorbis.txt │ │ ├── License.mpg123.Authors.txt │ │ ├── License.mpg123.txt │ │ ├── License.ogg.txt │ │ └── License.zlib.txt │ ├── SRB2NOTE-DEBIAN.md │ ├── SRB2NOTE.md │ ├── bin │ │ ├── x86 │ │ │ ├── libopenmpt.dll │ │ │ ├── mingw │ │ │ │ └── libopenmpt.dll │ │ │ ├── openmpt-mpg123.dll │ │ │ ├── openmpt-ogg.dll │ │ │ ├── openmpt-vorbis.dll │ │ │ └── openmpt-zlib.dll │ │ └── x86_64 │ │ │ ├── libopenmpt.dll │ │ │ ├── mingw │ │ │ └── libopenmpt.dll │ │ │ ├── openmpt-mpg123.dll │ │ │ ├── openmpt-ogg.dll │ │ │ ├── openmpt-vorbis.dll │ │ │ └── openmpt-zlib.dll │ ├── changelog.md │ ├── debian │ │ ├── libopenmpt-0.4.0-trusty-backport.diff │ │ └── libopenmpt-0.4.0-xenial-backport.diff │ ├── inc │ │ └── libopenmpt │ │ │ ├── libopenmpt.h │ │ │ ├── libopenmpt.hpp │ │ │ ├── libopenmpt_config.h │ │ │ ├── libopenmpt_ext.h │ │ │ ├── libopenmpt_ext.hpp │ │ │ ├── libopenmpt_stream_callbacks_buffer.h │ │ │ ├── libopenmpt_stream_callbacks_fd.h │ │ │ ├── libopenmpt_stream_callbacks_file.h │ │ │ └── libopenmpt_version.h │ └── lib │ │ ├── x86 │ │ ├── libopenmpt.lib │ │ └── mingw │ │ │ └── libopenmpt.dll.a │ │ └── x86_64 │ │ ├── libopenmpt.lib │ │ └── mingw │ │ └── libopenmpt.dll.a ├── libpng-src │ ├── ANNOUNCE │ ├── AUTHORS │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── KNOWNBUG │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── TRADEMARK │ ├── Y2KINFO │ ├── aclocal.m4 │ ├── arm │ │ ├── arm_init.c │ │ ├── filter_neon.S │ │ ├── filter_neon_intrinsics.c │ │ └── palette_neon_intrinsics.c │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── README.txt │ │ ├── arm-neon │ │ │ ├── README │ │ │ ├── android-ndk.c │ │ │ ├── linux-auxv.c │ │ │ └── linux.c │ │ ├── conftest │ │ │ ├── README │ │ │ ├── pngcp.dfa │ │ │ ├── read.dfa │ │ │ ├── s_read.dfa │ │ │ ├── s_write.dfa │ │ │ ├── simple.dfa │ │ │ └── write.dfa │ │ ├── examples │ │ │ ├── README.txt │ │ │ ├── iccfrompng.c │ │ │ ├── pngpixel.c │ │ │ ├── pngtopng.c │ │ │ └── simpleover.c │ │ ├── gregbook │ │ │ ├── COPYING │ │ │ ├── LICENSE │ │ │ ├── Makefile.mingw32 │ │ │ ├── Makefile.sgi │ │ │ ├── Makefile.unx │ │ │ ├── Makefile.w32 │ │ │ ├── README │ │ │ ├── makevms.com │ │ │ ├── readpng.c │ │ │ ├── readpng.h │ │ │ ├── readpng2.c │ │ │ ├── readpng2.h │ │ │ ├── readppm.c │ │ │ ├── rpng-win.c │ │ │ ├── rpng-x.c │ │ │ ├── rpng2-win.c │ │ │ ├── rpng2-x.c │ │ │ ├── toucan.png │ │ │ ├── wpng.c │ │ │ ├── writepng.c │ │ │ └── writepng.h │ │ ├── libtests │ │ │ ├── fakepng.c │ │ │ ├── gentests.sh │ │ │ ├── makepng.c │ │ │ ├── pngimage.c │ │ │ ├── pngstest-errors.h │ │ │ ├── pngstest.c │ │ │ ├── pngunknown.c │ │ │ ├── pngvalid.c │ │ │ ├── readpng.c │ │ │ ├── tarith.c │ │ │ └── timepng.c │ │ ├── mips-msa │ │ │ ├── README │ │ │ └── linux.c │ │ ├── oss-fuzz │ │ │ ├── Dockerfile │ │ │ ├── README.txt │ │ │ ├── build.sh │ │ │ ├── libpng_read_fuzzer.cc │ │ │ ├── libpng_read_fuzzer.options │ │ │ └── png.dict │ │ ├── pngminim │ │ │ ├── README │ │ │ ├── decoder │ │ │ │ ├── README │ │ │ │ ├── gather.sh │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ ├── encoder │ │ │ │ ├── README │ │ │ │ ├── dummy_inflate.c │ │ │ │ ├── gather.sh │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ │ └── preader │ │ │ │ ├── README │ │ │ │ ├── gather.sh │ │ │ │ ├── makefile │ │ │ │ ├── pngusr.dfa │ │ │ │ └── pngusr.h │ │ ├── pngminus │ │ │ ├── CHANGES.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── README.txt │ │ │ ├── makefile.std │ │ │ ├── makefile.tc3 │ │ │ ├── makevms.com │ │ │ ├── png2pnm.bat │ │ │ ├── png2pnm.c │ │ │ ├── png2pnm.sh │ │ │ ├── pngminus.bat │ │ │ ├── pngminus.sh │ │ │ ├── pnm2png.bat │ │ │ ├── pnm2png.c │ │ │ └── pnm2png.sh │ │ ├── pngsuite │ │ │ ├── README │ │ │ ├── bad_interlace_conversions.txt │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn0g16.png │ │ │ ├── basn2c08.png │ │ │ ├── basn2c16.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn4a16.png │ │ │ ├── basn6a08.png │ │ │ ├── basn6a16.png │ │ │ ├── ftbbn0g01.png │ │ │ ├── ftbbn0g02.png │ │ │ ├── ftbbn0g04.png │ │ │ ├── ftbbn2c16.png │ │ │ ├── ftbbn3p08.png │ │ │ ├── ftbgn2c16.png │ │ │ ├── ftbgn3p08.png │ │ │ ├── ftbrn2c08.png │ │ │ ├── ftbwn0g16.png │ │ │ ├── ftbwn3p08.png │ │ │ ├── ftbyn3p08.png │ │ │ ├── ftp0n0g08.png │ │ │ ├── ftp0n2c08.png │ │ │ ├── ftp0n3p08.png │ │ │ ├── ftp1n3p08.png │ │ │ ├── ibasn0g08.png │ │ │ ├── ibasn0g16.png │ │ │ ├── ibasn2c08.png │ │ │ ├── ibasn2c16.png │ │ │ ├── ibasn3p08.png │ │ │ ├── ibasn4a08.png │ │ │ ├── ibasn4a16.png │ │ │ ├── ibasn6a08.png │ │ │ ├── ibasn6a16.png │ │ │ ├── iftbbn2c16.png │ │ │ ├── iftbbn3p08.png │ │ │ ├── iftbgn2c16.png │ │ │ ├── iftbgn3p08.png │ │ │ ├── iftbrn2c08.png │ │ │ ├── iftbwn0g16.png │ │ │ ├── iftbwn3p08.png │ │ │ ├── iftbyn3p08.png │ │ │ ├── iftp0n0g08.png │ │ │ ├── iftp0n2c08.png │ │ │ ├── iftp0n3p08.png │ │ │ ├── iftp1n3p08.png │ │ │ └── interlaced │ │ │ │ ├── README │ │ │ │ ├── ibasn0g01.png │ │ │ │ ├── ibasn0g02.png │ │ │ │ ├── ibasn0g04.png │ │ │ │ ├── ibasn3p01.png │ │ │ │ ├── ibasn3p02.png │ │ │ │ ├── ibasn3p04.png │ │ │ │ ├── iftbbn0g01.png │ │ │ │ ├── iftbbn0g02.png │ │ │ │ └── iftbbn0g04.png │ │ ├── powerpc-vsx │ │ │ ├── README │ │ │ ├── linux.c │ │ │ └── linux_aux.c │ │ ├── testpngs │ │ │ ├── crashers │ │ │ │ ├── bad_iCCP.png │ │ │ │ ├── badadler.png │ │ │ │ ├── badcrc.png │ │ │ │ ├── empty_ancillary_chunks.png │ │ │ │ ├── huge_IDAT.png │ │ │ │ ├── huge_bKGD_chunk.png │ │ │ │ ├── huge_cHRM_chunk.png │ │ │ │ ├── huge_eXIf_chunk.png │ │ │ │ ├── huge_gAMA_chunk.png │ │ │ │ ├── huge_hIST_chunk.png │ │ │ │ ├── huge_iCCP_chunk.png │ │ │ │ ├── huge_iTXt_chunk.png │ │ │ │ ├── huge_juNK_unsafe_to_copy.png │ │ │ │ ├── huge_juNk_safe_to_copy.png │ │ │ │ ├── huge_pCAL_chunk.png │ │ │ │ ├── huge_pHYs_chunk.png │ │ │ │ ├── huge_sCAL_chunk.png │ │ │ │ ├── huge_sPLT_chunk.png │ │ │ │ ├── huge_sRGB_chunk.png │ │ │ │ ├── huge_sTER_chunk.png │ │ │ │ ├── huge_tEXt_chunk.png │ │ │ │ ├── huge_tIME_chunk.png │ │ │ │ └── huge_zTXt_chunk.png │ │ │ ├── gray-1-1.8-tRNS.png │ │ │ ├── gray-1-1.8.png │ │ │ ├── gray-1-linear-tRNS.png │ │ │ ├── gray-1-linear.png │ │ │ ├── gray-1-sRGB-tRNS.png │ │ │ ├── gray-1-sRGB.png │ │ │ ├── gray-1-tRNS.png │ │ │ ├── gray-1.png │ │ │ ├── gray-16-1.8-tRNS.png │ │ │ ├── gray-16-1.8.png │ │ │ ├── gray-16-linear-tRNS.png │ │ │ ├── gray-16-linear.png │ │ │ ├── gray-16-sRGB-tRNS.png │ │ │ ├── gray-16-sRGB.png │ │ │ ├── gray-16-tRNS.png │ │ │ ├── gray-16.png │ │ │ ├── gray-2-1.8-tRNS.png │ │ │ ├── gray-2-1.8.png │ │ │ ├── gray-2-linear-tRNS.png │ │ │ ├── gray-2-linear.png │ │ │ ├── gray-2-sRGB-tRNS.png │ │ │ ├── gray-2-sRGB.png │ │ │ ├── gray-2-tRNS.png │ │ │ ├── gray-2.png │ │ │ ├── gray-4-1.8-tRNS.png │ │ │ ├── gray-4-1.8.png │ │ │ ├── gray-4-linear-tRNS.png │ │ │ ├── gray-4-linear.png │ │ │ ├── gray-4-sRGB-tRNS.png │ │ │ ├── gray-4-sRGB.png │ │ │ ├── gray-4-tRNS.png │ │ │ ├── gray-4.png │ │ │ ├── gray-8-1.8-tRNS.png │ │ │ ├── gray-8-1.8.png │ │ │ ├── gray-8-linear-tRNS.png │ │ │ ├── gray-8-linear.png │ │ │ ├── gray-8-sRGB-tRNS.png │ │ │ ├── gray-8-sRGB.png │ │ │ ├── gray-8-tRNS.png │ │ │ ├── gray-8.png │ │ │ ├── gray-alpha-16-1.8.png │ │ │ ├── gray-alpha-16-linear.png │ │ │ ├── gray-alpha-16-sRGB.png │ │ │ ├── gray-alpha-16.png │ │ │ ├── gray-alpha-8-1.8.png │ │ │ ├── gray-alpha-8-linear.png │ │ │ ├── gray-alpha-8-sRGB.png │ │ │ ├── gray-alpha-8.png │ │ │ ├── makepngs.sh │ │ │ ├── palette-1-1.8-tRNS.png │ │ │ ├── palette-1-1.8.png │ │ │ ├── palette-1-linear-tRNS.png │ │ │ ├── palette-1-linear.png │ │ │ ├── palette-1-sRGB-tRNS.png │ │ │ ├── palette-1-sRGB.png │ │ │ ├── palette-1-tRNS.png │ │ │ ├── palette-1.png │ │ │ ├── palette-2-1.8-tRNS.png │ │ │ ├── palette-2-1.8.png │ │ │ ├── palette-2-linear-tRNS.png │ │ │ ├── palette-2-linear.png │ │ │ ├── palette-2-sRGB-tRNS.png │ │ │ ├── palette-2-sRGB.png │ │ │ ├── palette-2-tRNS.png │ │ │ ├── palette-2.png │ │ │ ├── palette-4-1.8-tRNS.png │ │ │ ├── palette-4-1.8.png │ │ │ ├── palette-4-linear-tRNS.png │ │ │ ├── palette-4-linear.png │ │ │ ├── palette-4-sRGB-tRNS.png │ │ │ ├── palette-4-sRGB.png │ │ │ ├── palette-4-tRNS.png │ │ │ ├── palette-4.png │ │ │ ├── palette-8-1.8-tRNS.png │ │ │ ├── palette-8-1.8.png │ │ │ ├── palette-8-linear-tRNS.png │ │ │ ├── palette-8-linear.png │ │ │ ├── palette-8-sRGB-tRNS.png │ │ │ ├── palette-8-sRGB.png │ │ │ ├── palette-8-tRNS.png │ │ │ ├── palette-8.png │ │ │ ├── rgb-16-1.8-tRNS.png │ │ │ ├── rgb-16-1.8.png │ │ │ ├── rgb-16-linear-tRNS.png │ │ │ ├── rgb-16-linear.png │ │ │ ├── rgb-16-sRGB-tRNS.png │ │ │ ├── rgb-16-sRGB.png │ │ │ ├── rgb-16-tRNS.png │ │ │ ├── rgb-16.png │ │ │ ├── rgb-8-1.8-tRNS.png │ │ │ ├── rgb-8-1.8.png │ │ │ ├── rgb-8-linear-tRNS.png │ │ │ ├── rgb-8-linear.png │ │ │ ├── rgb-8-sRGB-tRNS.png │ │ │ ├── rgb-8-sRGB.png │ │ │ ├── rgb-8-tRNS.png │ │ │ ├── rgb-8.png │ │ │ ├── rgb-alpha-16-1.8.png │ │ │ ├── rgb-alpha-16-linear.png │ │ │ ├── rgb-alpha-16-sRGB.png │ │ │ ├── rgb-alpha-16.png │ │ │ ├── rgb-alpha-8-1.8.png │ │ │ ├── rgb-alpha-8-linear.png │ │ │ ├── rgb-alpha-8-sRGB.png │ │ │ └── rgb-alpha-8.png │ │ ├── tools │ │ │ ├── README.txt │ │ │ ├── checksum-icc.c │ │ │ ├── chkfmt │ │ │ ├── cvtcolor.c │ │ │ ├── genpng.c │ │ │ ├── intgamma.sh │ │ │ ├── makesRGB.c │ │ │ ├── png-fix-itxt.c │ │ │ ├── pngcp.c │ │ │ ├── pngfix.c │ │ │ ├── reindent │ │ │ └── sRGB.h │ │ └── visupng │ │ │ ├── PngFile.c │ │ │ ├── PngFile.h │ │ │ ├── README.txt │ │ │ ├── VisualPng.c │ │ │ ├── VisualPng.dsp │ │ │ ├── VisualPng.dsw │ │ │ ├── VisualPng.ico │ │ │ ├── VisualPng.png │ │ │ ├── VisualPng.rc │ │ │ ├── cexcept.h │ │ │ └── resource.h │ ├── depcomp │ ├── example.c │ ├── install-sh │ ├── intel │ │ ├── filter_sse2_intrinsics.c │ │ └── intel_init.c │ ├── libpng-1.2.46.txt │ ├── libpng-config.in │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpng.pc.in │ ├── libpngpf.3 │ ├── ltmain.sh │ ├── mips │ │ ├── filter_msa_intrinsics.c │ │ └── mips_init.c │ ├── missing │ ├── mkinstalldirs │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngbar.jpg │ ├── pngbar.png │ ├── pngdebug.h │ ├── pngerror.c │ ├── pnggccrd.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pngmem.c │ ├── pngnow.png │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtest.png │ ├── pngtrans.c │ ├── pngusr.dfa │ ├── pngvcrd.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── powerpc │ │ ├── filter_vsx_intrinsics.c │ │ └── powerpc_init.c │ ├── projects │ │ ├── libpng32.a │ │ ├── libpng64.a │ │ ├── owatcom │ │ │ ├── libpng.tgt │ │ │ ├── libpng.wpj │ │ │ ├── pngconfig.mak │ │ │ ├── pngstest.tgt │ │ │ ├── pngtest.tgt │ │ │ └── pngvalid.tgt │ │ ├── pngconf.h │ │ ├── pnglibconf.h │ │ ├── visualc10 │ │ │ ├── .gitignore │ │ │ └── libpng.vcxproj │ │ ├── visualc71 │ │ │ ├── PRJ0041.mak │ │ │ ├── README.txt │ │ │ ├── README_zlib.txt │ │ │ ├── libpng.sln │ │ │ ├── libpng.vcproj │ │ │ ├── pngtest.vcproj │ │ │ └── zlib.vcproj │ │ └── vstudio │ │ │ ├── README.txt │ │ │ ├── libpng │ │ │ └── libpng.vcxproj │ │ │ ├── pnglibconf │ │ │ └── pnglibconf.vcxproj │ │ │ ├── pngstest │ │ │ └── pngstest.vcxproj │ │ │ ├── pngtest │ │ │ └── pngtest.vcxproj │ │ │ ├── pngunknown │ │ │ └── pngunknown.vcxproj │ │ │ ├── pngvalid │ │ │ └── pngvalid.vcxproj │ │ │ ├── vstudio.sln │ │ │ ├── zlib.props │ │ │ └── zlib │ │ │ └── zlib.vcxproj │ ├── scripts │ │ ├── README.txt │ │ ├── SCOPTIONS.ppc │ │ ├── checksym.awk │ │ ├── descrip.mms │ │ ├── dfn.awk │ │ ├── genchk.cmake.in │ │ ├── genout.cmake.in │ │ ├── gensrc.cmake.in │ │ ├── intprefix.c │ │ ├── libpng-config-body.in │ │ ├── libpng-config-head.in │ │ ├── libpng-config.in │ │ ├── libpng.icc │ │ ├── libpng.pc-configure.in │ │ ├── libpng.pc.in │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── macro.lst │ │ ├── makefile.32sunu │ │ ├── makefile.64sunu │ │ ├── makefile.acorn │ │ ├── makefile.aix │ │ ├── makefile.amiga │ │ ├── makefile.atari │ │ ├── makefile.bc32 │ │ ├── makefile.beos │ │ ├── makefile.bor │ │ ├── makefile.cegcc │ │ ├── makefile.clang │ │ ├── makefile.clang-asan │ │ ├── makefile.cygwin │ │ ├── makefile.darwin │ │ ├── makefile.dec │ │ ├── makefile.dj2 │ │ ├── makefile.elf │ │ ├── makefile.freebsd │ │ ├── makefile.gcc │ │ ├── makefile.gcc-asan │ │ ├── makefile.gcmmx │ │ ├── makefile.hp64 │ │ ├── makefile.hpgcc │ │ ├── makefile.hpux │ │ ├── makefile.ibmc │ │ ├── makefile.intel │ │ ├── makefile.knr │ │ ├── makefile.linux │ │ ├── makefile.linux-opt │ │ ├── makefile.mingw │ │ ├── makefile.mips │ │ ├── makefile.msc │ │ ├── makefile.msys │ │ ├── makefile.ne12bsd │ │ ├── makefile.netbsd │ │ ├── makefile.nommx │ │ ├── makefile.openbsd │ │ ├── makefile.os2 │ │ ├── makefile.sco │ │ ├── makefile.sggcc │ │ ├── makefile.sgi │ │ ├── makefile.so9 │ │ ├── makefile.solaris │ │ ├── makefile.solaris-x86 │ │ ├── makefile.std │ │ ├── makefile.sunos │ │ ├── makefile.tc3 │ │ ├── makefile.vcawin32 │ │ ├── makefile.vcwin32 │ │ ├── makefile.watcom │ │ ├── makevms.com │ │ ├── options.awk │ │ ├── png32ce.def │ │ ├── pnglibconf.dfa │ │ ├── pnglibconf.h.prebuilt │ │ ├── pnglibconf.mak │ │ ├── pngos2.def │ │ ├── pngw32.def │ │ ├── pngw32.rc │ │ ├── pngwin.rc │ │ ├── prefix.c │ │ ├── smakefile.ppc │ │ ├── sym.c │ │ ├── symbols.c │ │ ├── symbols.def │ │ ├── test.cmake.in │ │ └── vers.c │ ├── test-driver │ ├── test-pngtest.sh │ └── tests │ │ ├── pngimage-full │ │ ├── pngimage-quick │ │ ├── pngstest │ │ ├── pngstest-1.8 │ │ ├── pngstest-1.8-alpha │ │ ├── pngstest-linear │ │ ├── pngstest-linear-alpha │ │ ├── pngstest-none │ │ ├── pngstest-none-alpha │ │ ├── pngstest-sRGB │ │ ├── pngstest-sRGB-alpha │ │ ├── pngtest │ │ ├── pngtest-badpngs │ │ ├── pngunknown-IDAT │ │ ├── pngunknown-discard │ │ ├── pngunknown-if-safe │ │ ├── pngunknown-sAPI │ │ ├── pngunknown-sTER │ │ ├── pngunknown-save │ │ ├── pngunknown-vpAg │ │ ├── pngvalid-gamma-16-to-8 │ │ ├── pngvalid-gamma-alpha-mode │ │ ├── pngvalid-gamma-background │ │ ├── pngvalid-gamma-expand16-alpha-mode │ │ ├── pngvalid-gamma-expand16-background │ │ ├── pngvalid-gamma-expand16-transform │ │ ├── pngvalid-gamma-sbit │ │ ├── pngvalid-gamma-threshold │ │ ├── pngvalid-gamma-transform │ │ ├── pngvalid-progressive-interlace-standard │ │ ├── pngvalid-progressive-size │ │ ├── pngvalid-progressive-standard │ │ ├── pngvalid-standard │ │ └── pngvalid-transform ├── libpng.props ├── miniupnpc │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Changelog.txt │ ├── LICENSE │ ├── MANIFEST.in │ ├── Makefile │ ├── Makefile.mingw │ ├── README │ ├── VERSION │ ├── bsdqueue.h │ ├── codelength.h │ ├── connecthostport.c │ ├── connecthostport.h │ ├── declspec.h │ ├── external-ip.sh │ ├── igd_desc_parse.c │ ├── igd_desc_parse.h │ ├── java │ │ ├── JavaBridgeTest.java │ │ └── testjava.sh │ ├── man3 │ │ └── miniupnpc.3 │ ├── mingw32 │ │ └── libminiupnpc.a │ ├── mingw32make.bat │ ├── mingw64 │ │ └── libminiupnpc.a │ ├── minihttptestserver.c │ ├── minisoap.c │ ├── minisoap.h │ ├── minissdpc.c │ ├── minissdpc.h │ ├── miniupnpc.c │ ├── miniupnpc.def │ ├── miniupnpc.h │ ├── miniupnpcmodule.c │ ├── miniupnpcstrings.h.cmake │ ├── miniupnpcstrings.h.in │ ├── miniupnpctypes.h │ ├── miniwget.c │ ├── miniwget.h │ ├── minixml.c │ ├── minixml.h │ ├── minixmlvalid.c │ ├── msvc │ │ ├── miniupnpc.sln │ │ ├── miniupnpc.vcproj │ │ └── upnpc-static.vcproj │ ├── portlistingparse.c │ ├── portlistingparse.h │ ├── pymoduletest.py │ ├── receivedata.c │ ├── receivedata.h │ ├── setup.py │ ├── setupmingw32.py │ ├── testigddescparse.c │ ├── testminiwget.c │ ├── testminiwget.sh │ ├── testminixml.c │ ├── testupnpigd.py │ ├── testupnpreplyparse.c │ ├── updateminiupnpcstrings.sh │ ├── upnpc.c │ ├── upnpcommands.c │ ├── upnpcommands.h │ ├── upnperrors.c │ ├── upnperrors.h │ ├── upnpreplyparse.c │ ├── upnpreplyparse.h │ └── wingenminiupnpcstrings.c ├── win-iconv │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FindWcecompat.cmake │ ├── Makefile │ ├── iconv.def │ ├── iconv.h │ ├── libiconv32.a │ ├── libiconv64.a │ ├── mlang.def │ ├── mlang.h │ ├── readme.txt │ ├── win32 │ │ ├── iconv.dll │ │ └── win_iconv.exe │ ├── win64 │ │ ├── iconv.dll │ │ └── win_iconv.exe │ ├── win_iconv.c │ └── win_iconv_test.c ├── zlib.props ├── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── amiga │ │ ├── Makefile.pup │ │ └── Makefile.sas │ ├── compress.c │ ├── configure │ ├── contrib │ │ ├── README.contrib │ │ ├── ada │ │ │ ├── buffer_demo.adb │ │ │ ├── mtest.adb │ │ │ ├── read.adb │ │ │ ├── readme.txt │ │ │ ├── test.adb │ │ │ ├── zlib-streams.adb │ │ │ ├── zlib-streams.ads │ │ │ ├── zlib-thin.adb │ │ │ ├── zlib-thin.ads │ │ │ ├── zlib.adb │ │ │ ├── zlib.ads │ │ │ └── zlib.gpr │ │ ├── amd64 │ │ │ └── amd64-match.S │ │ ├── asm686 │ │ │ ├── README.686 │ │ │ └── match.S │ │ ├── blast │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── blast.c │ │ │ ├── blast.h │ │ │ ├── test.pk │ │ │ └── test.txt │ │ ├── delphi │ │ │ ├── ZLib.pas │ │ │ ├── ZLibConst.pas │ │ │ ├── readme.txt │ │ │ └── zlibd32.mak │ │ ├── dotzlib │ │ │ ├── DotZLib.build │ │ │ ├── DotZLib.chm │ │ │ ├── DotZLib.sln │ │ │ ├── DotZLib │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── Deflater.cs │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── DotZLib.csproj │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── Inflater.cs │ │ │ │ └── UnitTests.cs │ │ │ ├── LICENSE_1_0.txt │ │ │ └── readme.txt │ │ ├── gcc_gvmat64 │ │ │ └── gvmat64.S │ │ ├── infback9 │ │ │ ├── README │ │ │ ├── infback9.c │ │ │ ├── infback9.h │ │ │ ├── inffix9.h │ │ │ ├── inflate9.h │ │ │ ├── inftree9.c │ │ │ └── inftree9.h │ │ ├── inflate86 │ │ │ ├── inffas86.c │ │ │ └── inffast.S │ │ ├── iostream │ │ │ ├── test.cpp │ │ │ ├── zfstream.cpp │ │ │ └── zfstream.h │ │ ├── iostream2 │ │ │ ├── zstream.h │ │ │ └── zstream_test.cpp │ │ ├── iostream3 │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── test.cc │ │ │ ├── zfstream.cc │ │ │ └── zfstream.h │ │ ├── masmx64 │ │ │ ├── bld_ml64.bat │ │ │ ├── gvmat64.asm │ │ │ ├── inffas8664.c │ │ │ ├── inffasx64.asm │ │ │ └── readme.txt │ │ ├── masmx86 │ │ │ ├── bld_ml32.bat │ │ │ ├── inffas32.asm │ │ │ ├── match686.asm │ │ │ └── readme.txt │ │ ├── minizip │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── MiniZip64_Changes.txt │ │ │ ├── MiniZip64_info.txt │ │ │ ├── configure.ac │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── iowin32.c │ │ │ ├── iowin32.h │ │ │ ├── make_vms.com │ │ │ ├── miniunz.c │ │ │ ├── miniunzip.1 │ │ │ ├── minizip.1 │ │ │ ├── minizip.c │ │ │ ├── minizip.pc.in │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── pascal │ │ │ ├── example.pas │ │ │ ├── readme.txt │ │ │ ├── zlibd32.mak │ │ │ └── zlibpas.pas │ │ ├── puff │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── puff.c │ │ │ ├── puff.h │ │ │ ├── pufftest.c │ │ │ └── zeros.raw │ │ ├── testzlib │ │ │ ├── testzlib.c │ │ │ └── testzlib.txt │ │ ├── untgz │ │ │ ├── Makefile │ │ │ ├── Makefile.msc │ │ │ └── untgz.c │ │ └── vstudio │ │ │ ├── readme.txt │ │ │ ├── vc10 │ │ │ ├── miniunz.vcxproj │ │ │ ├── miniunz.vcxproj.filters │ │ │ ├── miniunz.vcxproj.user │ │ │ ├── minizip.vcxproj │ │ │ ├── minizip.vcxproj.filters │ │ │ ├── minizip.vcxproj.user │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlib.vcxproj.filters │ │ │ ├── testzlib.vcxproj.user │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── testzlibdll.vcxproj.filters │ │ │ ├── testzlibdll.vcxproj.user │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibstat.vcxproj.filters │ │ │ ├── zlibstat.vcxproj.user │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ ├── zlibvc.vcxproj │ │ │ ├── zlibvc.vcxproj.filters │ │ │ └── zlibvc.vcxproj.user │ │ │ ├── vc11 │ │ │ ├── miniunz.vcxproj │ │ │ ├── minizip.vcxproj │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcxproj │ │ │ ├── vc12 │ │ │ ├── miniunz.vcxproj │ │ │ ├── minizip.vcxproj │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcxproj │ │ │ ├── vc14 │ │ │ ├── miniunz.vcxproj │ │ │ ├── minizip.vcxproj │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcxproj │ │ │ ├── vc7 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ │ │ ├── vc8 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── testzlibdll.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ │ │ └── vc9 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── testzlibdll.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── doc │ │ ├── algorithm.txt │ │ ├── rfc1950.txt │ │ ├── rfc1951.txt │ │ ├── rfc1952.txt │ │ └── txtvsbin.txt │ ├── examples │ │ ├── README.examples │ │ ├── enough.c │ │ ├── fitblk.c │ │ ├── gun.c │ │ ├── gzappend.c │ │ ├── gzjoin.c │ │ ├── gzlog.c │ │ ├── gzlog.h │ │ ├── zlib_how.html │ │ ├── zpipe.c │ │ └── zran.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── msdos │ │ ├── Makefile.bor │ │ ├── Makefile.dj2 │ │ ├── Makefile.emx │ │ ├── Makefile.msc │ │ └── Makefile.tc │ ├── nintendods │ │ ├── Makefile │ │ └── README │ ├── old │ │ ├── Makefile.emx │ │ ├── Makefile.riscos │ │ ├── README │ │ ├── as400 │ │ │ ├── bndsrc │ │ │ ├── compile.clp │ │ │ ├── readme.txt │ │ │ └── zlib.inc │ │ ├── descrip.mms │ │ ├── os2 │ │ │ ├── Makefile.os2 │ │ │ └── zlib.def │ │ ├── visual-basic.txt │ │ └── visualc6 │ │ │ ├── README.txt │ │ │ ├── example.dsp │ │ │ ├── minigzip.dsp │ │ │ ├── zlib.dsp │ │ │ └── zlib.dsw │ ├── os400 │ │ ├── README400 │ │ ├── bndsrc │ │ ├── make.sh │ │ └── zlib.inc │ ├── projects │ │ ├── README.projects │ │ ├── visualc10 │ │ │ ├── .gitignore │ │ │ └── zlib.vcxproj │ │ ├── visualc6 │ │ │ ├── README.txt │ │ │ ├── example.dsp │ │ │ ├── minigzip.dsp │ │ │ ├── zlib.dsp │ │ │ └── zlib.dsw │ │ └── visualc9 │ │ │ ├── .gitignore │ │ │ └── zlib.vcproj │ ├── qnx │ │ └── package.qpg │ ├── test │ │ ├── example.c │ │ ├── infcover.c │ │ └── minigzip.c │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── watcom │ │ ├── watcom_f.mak │ │ └── watcom_l.mak │ ├── win32 │ │ ├── DLL_FAQ.txt │ │ ├── Makefile.bor │ │ ├── Makefile.emx │ │ ├── Makefile.gcc │ │ ├── Makefile.msc │ │ ├── README-WIN32.txt │ │ ├── VisualC.txt │ │ ├── libz32.a │ │ ├── libz64.a │ │ ├── zlib.def │ │ └── zlib1.rc │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h └── zlibVC6.diff ├── srb2-vc10.sln ├── srb2-vc9.sln ├── srb2.png ├── srb2banner.png ├── src ├── .gitignore ├── Android.mk ├── CMakeLists.txt ├── Makefile ├── Makefile.d │ ├── detect.mk │ ├── features.mk │ ├── nix.mk │ ├── old.mk │ ├── platform.mk │ ├── sdl.mk │ ├── util.mk │ ├── versions.mk │ └── win32.mk ├── Sourcefile ├── am_map.c ├── am_map.h ├── android │ ├── README │ ├── i_cdmus.c │ ├── i_main.c │ ├── i_net.c │ ├── i_sound.c │ ├── i_system.c │ ├── i_video.c │ ├── i_video.h │ └── jni_main.h ├── apng.c ├── apng.h ├── asm_defs.inc ├── b_bot.c ├── b_bot.h ├── blua │ ├── BLUA.htm │ ├── CMakeLists.txt │ ├── Sourcefile │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmem.c │ ├── lmem.h │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── lparser.c │ ├── lparser.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.h │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── byteptr.h ├── command.c ├── command.h ├── comptime.c ├── config.h.in ├── console.c ├── console.h ├── d_clisrv.c ├── d_clisrv.h ├── d_event.h ├── d_main.c ├── d_main.h ├── d_net.c ├── d_net.h ├── d_netcmd.c ├── d_netcmd.h ├── d_netfil.c ├── d_netfil.h ├── d_player.h ├── d_think.h ├── d_ticcmd.h ├── deh_lua.c ├── deh_lua.h ├── deh_soc.c ├── deh_soc.h ├── deh_tables.c ├── deh_tables.h ├── dehacked.c ├── dehacked.h ├── doomdata.h ├── doomdef.h ├── doomstat.h ├── doomtype.h ├── dummy │ ├── i_cdmus.c │ ├── i_main.c │ ├── i_net.c │ ├── i_sound.c │ ├── i_system.c │ └── i_video.c ├── endian.h ├── f_finale.c ├── f_finale.h ├── f_wipe.c ├── fastcmp.h ├── filesrch.c ├── filesrch.h ├── g_demo.c ├── g_demo.h ├── g_game.c ├── g_game.h ├── g_input.c ├── g_input.h ├── g_state.h ├── hardware │ ├── CMakeLists.txt │ ├── Sourcefile │ ├── hw3dsdrv.h │ ├── hw3sound.c │ ├── hw3sound.h │ ├── hw_batching.c │ ├── hw_batching.h │ ├── hw_bsp.c │ ├── hw_cache.c │ ├── hw_clip.c │ ├── hw_clip.h │ ├── hw_data.h │ ├── hw_defs.h │ ├── hw_dll.h │ ├── hw_draw.c │ ├── hw_drv.h │ ├── hw_glob.h │ ├── hw_light.c │ ├── hw_light.h │ ├── hw_main.c │ ├── hw_main.h │ ├── hw_md2.c │ ├── hw_md2.h │ ├── hw_md2load.c │ ├── hw_md2load.h │ ├── hw_md3load.c │ ├── hw_md3load.h │ ├── hw_model.c │ ├── hw_model.h │ ├── hws_data.h │ ├── r_opengl │ │ ├── ogl_win.c │ │ ├── r_opengl-vc10.vcxproj │ │ ├── r_opengl-vc9.vcproj │ │ ├── r_opengl.c │ │ ├── r_opengl.dev │ │ ├── r_opengl.dsp │ │ ├── r_opengl.h │ │ └── r_vbo.h │ ├── s_ds3d │ │ ├── s_ds3d.c │ │ ├── s_ds3d.dev │ │ └── s_ds3d.dsp │ ├── s_fmod │ │ ├── s_fmod.c │ │ ├── s_fmod.dev │ │ └── s_fmod.dsp │ ├── s_openal │ │ ├── s_openal-vc10.vcxproj │ │ ├── s_openal-vc9.vcproj │ │ ├── s_openal.c │ │ ├── s_openal.dev │ │ └── s_openal.dsp │ ├── u_list.c │ └── u_list.h ├── http-mserv.c ├── hu_stuff.c ├── hu_stuff.h ├── i_addrinfo.c ├── i_addrinfo.h ├── i_joy.h ├── i_net.h ├── i_sound.h ├── i_system.h ├── i_tcp.c ├── i_tcp.h ├── i_threads.h ├── i_video.h ├── info.c ├── info.h ├── keys.h ├── locale │ ├── en.po │ └── srb2.pot ├── lua_baselib.c ├── lua_blockmaplib.c ├── lua_consolelib.c ├── lua_hook.h ├── lua_hooklib.c ├── lua_hud.h ├── lua_hudlib.c ├── lua_infolib.c ├── lua_libs.h ├── lua_maplib.c ├── lua_mathlib.c ├── lua_mobjlib.c ├── lua_playerlib.c ├── lua_polyobjlib.c ├── lua_script.c ├── lua_script.h ├── lua_skinlib.c ├── lua_taglib.c ├── lua_thinkerlib.c ├── lzf.c ├── lzf.h ├── m_aatree.c ├── m_aatree.h ├── m_anigif.c ├── m_anigif.h ├── m_argv.c ├── m_argv.h ├── m_bbox.c ├── m_bbox.h ├── m_cheat.c ├── m_cheat.h ├── m_cond.c ├── m_cond.h ├── m_dllist.h ├── m_fixed.c ├── m_fixed.h ├── m_menu.c ├── m_menu.h ├── m_misc.c ├── m_misc.h ├── m_perfstats.c ├── m_perfstats.h ├── m_queue.c ├── m_queue.h ├── m_random.c ├── m_random.h ├── m_swap.h ├── md5.c ├── md5.h ├── mserv.c ├── mserv.h ├── p5prof.h ├── p_ceilng.c ├── p_enemy.c ├── p_floor.c ├── p_inter.c ├── p_lights.c ├── p_local.h ├── p_map.c ├── p_maputl.c ├── p_maputl.h ├── p_mobj.c ├── p_mobj.h ├── p_polyobj.c ├── p_polyobj.h ├── p_pspr.h ├── p_saveg.c ├── p_saveg.h ├── p_setup.c ├── p_setup.h ├── p_sight.c ├── p_slopes.c ├── p_slopes.h ├── p_spec.c ├── p_spec.h ├── 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_draw16.c ├── r_draw8.c ├── r_draw8_npo2.c ├── r_local.h ├── r_main.c ├── r_main.h ├── r_patch.c ├── r_patch.h ├── r_patchrotation.c ├── r_patchrotation.h ├── r_picformats.c ├── r_picformats.h ├── r_plane.c ├── r_plane.h ├── r_portal.c ├── r_portal.h ├── r_segs.c ├── r_segs.h ├── r_skins.c ├── r_skins.h ├── r_sky.c ├── r_sky.h ├── r_splats.c ├── r_splats.h ├── r_state.h ├── r_textures.c ├── r_textures.h ├── r_things.c ├── r_things.h ├── s_sound.c ├── s_sound.h ├── screen.c ├── screen.h ├── sdl │ ├── CMakeLists.txt │ ├── IMG_xpm.c │ ├── MakeCYG.cfg │ ├── SDL_icon.xpm │ ├── SDL_main │ │ ├── SDL_dummy_main.c │ │ ├── SDL_macosx_main.h │ │ ├── SDL_macosx_main.m │ │ ├── SDL_openxdk_main.c │ │ └── SDL_windows_main.c │ ├── SRB2Pandora │ │ ├── Makefile.cfg │ │ ├── PXML.xml │ │ └── icon.png │ ├── Sourcefile │ ├── Srb2SDL-vc10.vcxproj │ ├── Srb2SDL-vc10.vcxproj.filters │ ├── Srb2SDL-vc9.vcproj │ ├── Srb2SDL.dsp │ ├── Srb2SDL.dsw │ ├── Srb2SDL.ico │ ├── Srb2SDL.props │ ├── dosstr.c │ ├── endtxt.c │ ├── endtxt.h │ ├── hwsym_sdl.c │ ├── hwsym_sdl.h │ ├── i_main.c │ ├── i_net.c │ ├── i_system.c │ ├── i_threads.c │ ├── i_ttf.c │ ├── i_ttf.h │ ├── i_video.c │ ├── macosx │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── Srb2mac.icns │ │ ├── Srb2mac.pbproj │ │ │ └── project.pbxproj │ │ ├── Srb2mac.xcodeproj │ │ │ └── project.pbxproj │ │ ├── mac_alert.c │ │ ├── mac_alert.h │ │ ├── mac_resources.c │ │ └── mac_resources.h │ ├── mixer_sound.c │ ├── ogl_sdl.c │ ├── ogl_sdl.h │ ├── sdl_sound.c │ ├── sdlmain.h │ └── srb2.ttf ├── sounds.c ├── sounds.h ├── st_stuff.c ├── st_stuff.h ├── strcasestr.c ├── string.c ├── t_facon.c ├── t_fsin.c ├── t_ftan.c ├── t_tan2a.c ├── tables.c ├── tables.h ├── taglist.c ├── taglist.h ├── tmap.nas ├── tmap.s ├── tmap_asm.s ├── tmap_mmx.nas ├── tmap_vc.nas ├── v_video.c ├── v_video.h ├── version.h ├── vid_copy.s ├── w_wad.c ├── w_wad.h ├── win32 │ ├── CMakeLists.txt │ ├── Srb2win-vc10.vcxproj │ ├── Srb2win-vc10.vcxproj.filters │ ├── Srb2win-vc9.vcproj │ ├── Srb2win.dsp │ ├── Srb2win.dsw │ ├── Srb2win.ico │ ├── Srb2win.props │ ├── Srb2win.rc │ ├── afxres.h │ ├── dx_error.c │ ├── dx_error.h │ ├── fabdxlib.c │ ├── fabdxlib.h │ ├── resource.h │ ├── srb2win.exe.manifest │ ├── win_cd.c │ ├── win_dbg.c │ ├── win_dbg.h │ ├── win_dll.c │ ├── win_dll.h │ ├── win_main.c │ ├── win_main.h │ ├── win_net.c │ ├── win_snd.c │ ├── win_sys.c │ └── win_vid.c ├── y_inter.c ├── y_inter.h ├── z_zone.c └── z_zone.h └── tools ├── .gitignore ├── IRC_Bot ├── SRB2MS_Bot.php ├── SRB2MS_Bot_beta.php ├── SmartIRC.php ├── SmartIRC │ ├── defines.php │ ├── irccommands.php │ └── messagehandler.php └── magpierss │ ├── AUTHORS │ ├── CHANGES │ ├── ChangeLog │ ├── INSTALL │ ├── NEWS │ ├── README │ ├── TROUBLESHOOTING │ ├── extlib │ └── Snoopy.class.inc │ ├── rss_cache.inc │ ├── rss_fetch.inc │ ├── rss_parse.inc │ └── rss_utils.inc ├── LevelConverter ├── Makefile ├── levelconverter.c ├── levelconverter.dsp └── levelconverter.dsw ├── MSDfile ├── PHP ├── RSS1.0.php ├── RSS92.php ├── index.php └── text.php ├── PHPD ├── SDL-1.2.14-gc ├── README └── SDL-1.2.14-gc.patch ├── SDL1.2.7_CE ├── SDL-1.27_CE.diff └── VisualCEv2.zip ├── SOCEdit ├── Global.bas ├── SOCEdit.vbp ├── Things.frm ├── Things.frx ├── frmCharacterEdit.frm ├── frmCharacterEdit.frx ├── frmCutsceneEdit.frm ├── frmCutsceneEdit.frx ├── frmEmblemEdit.frm ├── frmEmblemEdit.frx ├── frmHUDEdit.frm ├── frmHUDEdit.frx ├── frmHelp.frm ├── frmHelp.frx ├── frmHub.frm ├── frmHub.frx ├── frmLevelHeader.frm ├── frmLevelHeader.frx ├── frmMaincfg.frm ├── frmMaincfg.frx ├── frmSoundEdit.frm ├── frmSoundEdit.frx ├── frmStateEdit.frm ├── frmStateEdit.frx ├── frmUnlockablesEdit.frm ├── frmUnlockablesEdit.frx └── icon1.ico ├── SRB2Launcher ├── ReadMe.txt ├── SRB2Launcher.cpp ├── SRB2Launcher.dsp ├── SRB2Launcher.dsw ├── SRB2Launcher.h ├── Script1.rc ├── StdAfx.cpp ├── StdAfx.h ├── bitmap1.bmp ├── i_tcp.c ├── i_tcp.h ├── icon1.ico ├── launcher.c ├── launcher.h ├── lilsocklib.h ├── mserv.c ├── mserv.h ├── mservsdk.h └── resource.h ├── SRB2MP ├── Makefile ├── SRB2MP.c ├── SRB2MP.dsp ├── SRB2MP.dsw ├── Script1.aps ├── Script1.rc ├── StdAfx.c ├── StdAfx.h ├── icon1.ico ├── lump.c ├── lump.h └── resource.h ├── SRB2Updater ├── Bunny.cs ├── Debug.Designer.cs ├── Debug.cs ├── Debug.resx ├── Launcher.Designer.cs ├── Launcher.cs ├── Launcher.resx ├── MSClient.cs ├── Options.Designer.cs ├── Options.cs ├── Options.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Banner.png │ ├── Banner.psd │ ├── Banner2.png │ ├── Banner3.png │ ├── Banner4.png │ ├── CONSBACK.bmp │ ├── Kotaku.wav │ ├── Sonic.png │ ├── Srb2win.ico │ ├── sonic_bottom.png │ ├── sonic_top.png │ └── updaterbanner.png ├── SRB2Updater.csproj ├── SRB2Updater.sln ├── ServerQuerier.cs ├── Settings.cs └── app.config ├── anglechk.c ├── convert.c ├── dircomp2.c ├── djgpp └── all313.dif ├── flatb ├── Makefile └── flatb.c ├── fmoddyn.h ├── gdbst03 ├── Makefile ├── announce ├── include │ └── i386-stub.h ├── install ├── license ├── makefile.cfg ├── readme └── src │ ├── demo │ ├── crc_16.c │ ├── makefile │ └── serdbg.c │ ├── include │ ├── crc.h │ └── i386-supp.h │ └── library │ ├── bios_layer.h │ ├── dzc_layer.h │ ├── i386-stub.c │ ├── i386-supp.c │ ├── makefile │ └── sva_layer.h ├── keys.h ├── libwad ├── Makefile ├── examples │ └── wadexample │ │ ├── Makefile │ │ └── wadexample.c ├── include │ └── wad.h └── src │ ├── lump.c │ ├── wad.c │ ├── wad_static.c │ └── wad_static.h ├── lumpmod ├── Makefile ├── lump.c ├── lump.h ├── lumpmod.c └── lumpmod.html ├── makefile ├── masterserver ├── .gitignore ├── Makefile ├── Master.dsp ├── Master.sln ├── Master.vcproj ├── MasterClient.dev ├── MasterServer.dev ├── client.cpp ├── common.cpp ├── common.h ├── crypt.cpp ├── ipcs.cpp ├── ipcs.h ├── masterserver.sh ├── md5.cpp ├── md5.h ├── server.cpp ├── srvlist.cpp ├── srvlist.h ├── stats.cpp ├── stats.h └── structure.sql ├── musicdef-2.2.1 ├── Makefile └── musicdef-2.2.1.c ├── srb2msns └── elements │ └── srb2ms.RDF ├── wadconv ├── Makefile └── wadconv.c └── wadzip ├── err.c ├── err.h ├── lzf.h ├── lzfP.h ├── lzf_c.c ├── lzf_d.c ├── wadzip.c ├── wadzip.dsp ├── wadzip.dsw ├── wadzip.txt ├── xm.c └── xm.h /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/.travis.yml -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/Android.mk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/README.md -------------------------------------------------------------------------------- /SRB2.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/SRB2.cbp -------------------------------------------------------------------------------- /SRB2_Debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/SRB2_Debug.props -------------------------------------------------------------------------------- /SRB2_Release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/SRB2_Release.props -------------------------------------------------------------------------------- /SRB2_common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/SRB2_common.props -------------------------------------------------------------------------------- /Srb2.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/Srb2.dev -------------------------------------------------------------------------------- /android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/android/.classpath -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/android/.project -------------------------------------------------------------------------------- /android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/android/Android.mk -------------------------------------------------------------------------------- /android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/android/default.properties -------------------------------------------------------------------------------- /android/gen/org/srb2/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/android/gen/org/srb2/R.java -------------------------------------------------------------------------------- /android/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/android/res/layout/main.xml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/assets/.gitignore -------------------------------------------------------------------------------- /assets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/assets/CMakeLists.txt -------------------------------------------------------------------------------- /assets/LICENSE-3RD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/assets/LICENSE-3RD-PARTY.txt -------------------------------------------------------------------------------- /assets/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/assets/LICENSE.txt -------------------------------------------------------------------------------- /assets/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/assets/README.txt -------------------------------------------------------------------------------- /assets/debian-template/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /assets/debian-template/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/assets/debian-template/rules -------------------------------------------------------------------------------- /assets/debian-template/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /assets/debian-template/source/options: -------------------------------------------------------------------------------- 1 | tar-ignore = "tmp/*" 2 | -------------------------------------------------------------------------------- /cmake/Modules/FindGME.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/cmake/Modules/FindGME.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/cmake/Modules/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/launch-c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/cmake/launch-c.in -------------------------------------------------------------------------------- /cmake/launch-cxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/cmake/launch-cxx.in -------------------------------------------------------------------------------- /comptime.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/comptime.bat -------------------------------------------------------------------------------- /comptime.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/comptime.mk -------------------------------------------------------------------------------- /comptime.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/comptime.props -------------------------------------------------------------------------------- /comptime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/comptime.sh -------------------------------------------------------------------------------- /cpdebug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/cpdebug.mk -------------------------------------------------------------------------------- /debian-template/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/debian-template/changelog -------------------------------------------------------------------------------- /debian-template/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian-template/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/debian-template/control -------------------------------------------------------------------------------- /debian-template/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/debian-template/copyright -------------------------------------------------------------------------------- /debian-template/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/debian-template/docs -------------------------------------------------------------------------------- /debian-template/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/debian-template/rules -------------------------------------------------------------------------------- /debian-template/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian-template/srb2.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/debian-template/srb2.desktop -------------------------------------------------------------------------------- /debian_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/debian_template.sh -------------------------------------------------------------------------------- /deployer/travis/deployer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/deployer/travis/deployer.sh -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | /SRB2 2 | -------------------------------------------------------------------------------- /doc/Doublescan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/Doublescan.txt -------------------------------------------------------------------------------- /doc/Item Ranges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/Item Ranges.txt -------------------------------------------------------------------------------- /doc/Linedef Ranges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/Linedef Ranges.txt -------------------------------------------------------------------------------- /doc/SSN-Todo.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/SSN-Todo.xls -------------------------------------------------------------------------------- /doc/Sector Ranges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/Sector Ranges.txt -------------------------------------------------------------------------------- /doc/copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/copying -------------------------------------------------------------------------------- /doc/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/faq.txt -------------------------------------------------------------------------------- /doc/manual/manual.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/manual/manual.htm -------------------------------------------------------------------------------- /doc/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/rules.txt -------------------------------------------------------------------------------- /doc/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/source.txt -------------------------------------------------------------------------------- /doc/specials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/doc/specials.html -------------------------------------------------------------------------------- /extras/conf/SRB2-22.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/conf/SRB2-22.cfg -------------------------------------------------------------------------------- /extras/conf/Srb2-20db.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/conf/Srb2-20db.cfg -------------------------------------------------------------------------------- /extras/conf/Srb2-20wb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/conf/Srb2-20wb.cfg -------------------------------------------------------------------------------- /extras/conf/Srb2-21db.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/conf/Srb2-21db.cfg -------------------------------------------------------------------------------- /extras/conf/Srb2-21wb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/conf/Srb2-21wb.cfg -------------------------------------------------------------------------------- /extras/conf/srb2-21db2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/conf/srb2-21db2.cfg -------------------------------------------------------------------------------- /extras/conf/srb2.wcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/conf/srb2.wcf -------------------------------------------------------------------------------- /extras/conf/srb2.ygd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/conf/srb2.ygd -------------------------------------------------------------------------------- /extras/conf/srb2_db.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/conf/srb2_db.cfg -------------------------------------------------------------------------------- /extras/wminput.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/extras/wminput.conf -------------------------------------------------------------------------------- /libs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/.gitattributes -------------------------------------------------------------------------------- /libs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/.gitignore -------------------------------------------------------------------------------- /libs/DLL-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/DLL-README.txt -------------------------------------------------------------------------------- /libs/FMOD.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/FMOD.props -------------------------------------------------------------------------------- /libs/SDL2.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2.props -------------------------------------------------------------------------------- /libs/SDL2/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/BUGS.txt -------------------------------------------------------------------------------- /libs/SDL2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/COPYING.txt -------------------------------------------------------------------------------- /libs/SDL2/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/CREDITS.txt -------------------------------------------------------------------------------- /libs/SDL2/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/INSTALL.txt -------------------------------------------------------------------------------- /libs/SDL2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/Makefile -------------------------------------------------------------------------------- /libs/SDL2/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/README-SDL.txt -------------------------------------------------------------------------------- /libs/SDL2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/README.txt -------------------------------------------------------------------------------- /libs/SDL2/SRB2NOTE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/SRB2NOTE.txt -------------------------------------------------------------------------------- /libs/SDL2/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/WhatsNew.txt -------------------------------------------------------------------------------- /libs/SDL2/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/docs/README-hg.md -------------------------------------------------------------------------------- /libs/SDL2/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/docs/README-ios.md -------------------------------------------------------------------------------- /libs/SDL2/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/docs/README-psp.md -------------------------------------------------------------------------------- /libs/SDL2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/docs/README.md -------------------------------------------------------------------------------- /libs/SDL2/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/docs/doxyfile -------------------------------------------------------------------------------- /libs/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/include/SDL.h -------------------------------------------------------------------------------- /libs/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /libs/SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /libs/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /libs/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /libs/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /libs/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /libs/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /libs/SDL2/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/include/SDL_test.h -------------------------------------------------------------------------------- /libs/SDL2/lib/ARM/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/lib/ARM/SDL2.dll -------------------------------------------------------------------------------- /libs/SDL2/lib/ARM/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/lib/ARM/SDL2.lib -------------------------------------------------------------------------------- /libs/SDL2/lib/ARM64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/lib/ARM64/SDL2.dll -------------------------------------------------------------------------------- /libs/SDL2/lib/ARM64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/lib/ARM64/SDL2.lib -------------------------------------------------------------------------------- /libs/SDL2/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /libs/SDL2/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /libs/SDL2/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /libs/SDL2/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /libs/SDL2/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/COPYING -------------------------------------------------------------------------------- /libs/SDL2/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/Makefile.in -------------------------------------------------------------------------------- /libs/SDL2/test/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/Makefile.os2 -------------------------------------------------------------------------------- /libs/SDL2/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/README -------------------------------------------------------------------------------- /libs/SDL2/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/acinclude.m4 -------------------------------------------------------------------------------- /libs/SDL2/test/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/aclocal.m4 -------------------------------------------------------------------------------- /libs/SDL2/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/autogen.sh -------------------------------------------------------------------------------- /libs/SDL2/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/axis.bmp -------------------------------------------------------------------------------- /libs/SDL2/test/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/button.bmp -------------------------------------------------------------------------------- /libs/SDL2/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/checkkeys.c -------------------------------------------------------------------------------- /libs/SDL2/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/configure -------------------------------------------------------------------------------- /libs/SDL2/test/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/configure.ac -------------------------------------------------------------------------------- /libs/SDL2/test/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/configure.in -------------------------------------------------------------------------------- /libs/SDL2/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/gcc-fat.sh -------------------------------------------------------------------------------- /libs/SDL2/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/icon.bmp -------------------------------------------------------------------------------- /libs/SDL2/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/loopwave.c -------------------------------------------------------------------------------- /libs/SDL2/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/moose.dat -------------------------------------------------------------------------------- /libs/SDL2/test/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/nacl/Makefile -------------------------------------------------------------------------------- /libs/SDL2/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/picture.xbm -------------------------------------------------------------------------------- /libs/SDL2/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/sample.bmp -------------------------------------------------------------------------------- /libs/SDL2/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/sample.wav -------------------------------------------------------------------------------- /libs/SDL2/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testatomic.c -------------------------------------------------------------------------------- /libs/SDL2/test/testbounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testbounds.c -------------------------------------------------------------------------------- /libs/SDL2/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testdraw2.c -------------------------------------------------------------------------------- /libs/SDL2/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testerror.c -------------------------------------------------------------------------------- /libs/SDL2/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testfile.c -------------------------------------------------------------------------------- /libs/SDL2/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testgesture.c -------------------------------------------------------------------------------- /libs/SDL2/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testgl2.c -------------------------------------------------------------------------------- /libs/SDL2/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testgles.c -------------------------------------------------------------------------------- /libs/SDL2/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testgles2.c -------------------------------------------------------------------------------- /libs/SDL2/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testhaptic.c -------------------------------------------------------------------------------- /libs/SDL2/test/testhotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testhotplug.c -------------------------------------------------------------------------------- /libs/SDL2/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testiconv.c -------------------------------------------------------------------------------- /libs/SDL2/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testime.c -------------------------------------------------------------------------------- /libs/SDL2/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testkeys.c -------------------------------------------------------------------------------- /libs/SDL2/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testloadso.c -------------------------------------------------------------------------------- /libs/SDL2/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testlock.c -------------------------------------------------------------------------------- /libs/SDL2/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testmessage.c -------------------------------------------------------------------------------- /libs/SDL2/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testnative.c -------------------------------------------------------------------------------- /libs/SDL2/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testnative.h -------------------------------------------------------------------------------- /libs/SDL2/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testpower.c -------------------------------------------------------------------------------- /libs/SDL2/test/testqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testqsort.c -------------------------------------------------------------------------------- /libs/SDL2/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testrumble.c -------------------------------------------------------------------------------- /libs/SDL2/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testscale.c -------------------------------------------------------------------------------- /libs/SDL2/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testsem.c -------------------------------------------------------------------------------- /libs/SDL2/test/testsensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testsensor.c -------------------------------------------------------------------------------- /libs/SDL2/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testshader.c -------------------------------------------------------------------------------- /libs/SDL2/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testshape.c -------------------------------------------------------------------------------- /libs/SDL2/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testsprite2.c -------------------------------------------------------------------------------- /libs/SDL2/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testthread.c -------------------------------------------------------------------------------- /libs/SDL2/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testtimer.c -------------------------------------------------------------------------------- /libs/SDL2/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testver.c -------------------------------------------------------------------------------- /libs/SDL2/test/testvulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testvulkan.c -------------------------------------------------------------------------------- /libs/SDL2/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testwm2.c -------------------------------------------------------------------------------- /libs/SDL2/test/testyuv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testyuv.bmp -------------------------------------------------------------------------------- /libs/SDL2/test/testyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testyuv.c -------------------------------------------------------------------------------- /libs/SDL2/test/testyuv_cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testyuv_cvt.c -------------------------------------------------------------------------------- /libs/SDL2/test/testyuv_cvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/testyuv_cvt.h -------------------------------------------------------------------------------- /libs/SDL2/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2/test/utf8.txt -------------------------------------------------------------------------------- /libs/SDL2_mixer/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2_mixer/CHANGES.txt -------------------------------------------------------------------------------- /libs/SDL2_mixer/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2_mixer/COPYING.txt -------------------------------------------------------------------------------- /libs/SDL2_mixer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2_mixer/Makefile -------------------------------------------------------------------------------- /libs/SDL2_mixer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2_mixer/README.txt -------------------------------------------------------------------------------- /libs/SDL2_mixer/SRB2NOTE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL2_mixer/SRB2NOTE.txt -------------------------------------------------------------------------------- /libs/SDLMixerX/CHANGES.X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDLMixerX/CHANGES.X.txt -------------------------------------------------------------------------------- /libs/SDLMixerX/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDLMixerX/CHANGES.txt -------------------------------------------------------------------------------- /libs/SDLMixerX/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDLMixerX/COPYING.txt -------------------------------------------------------------------------------- /libs/SDLMixerX/GPLv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDLMixerX/GPLv2.txt -------------------------------------------------------------------------------- /libs/SDLMixerX/GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDLMixerX/GPLv3.txt -------------------------------------------------------------------------------- /libs/SDLMixerX/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDLMixerX/README.txt -------------------------------------------------------------------------------- /libs/SDLMixerX/SRB2Note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDLMixerX/SRB2Note.txt -------------------------------------------------------------------------------- /libs/SDL_mixer.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/SDL_mixer.props -------------------------------------------------------------------------------- /libs/curl/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/curl/CHANGES -------------------------------------------------------------------------------- /libs/curl/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /libs/curl/lib32/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/curl/lib32/libcurl.a -------------------------------------------------------------------------------- /libs/curl/lib32/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/curl/lib32/libcurl.dll -------------------------------------------------------------------------------- /libs/curl/lib64/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/curl/lib64/libcurl.a -------------------------------------------------------------------------------- /libs/fmodex/inc/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/fmodex/inc/fmod.h -------------------------------------------------------------------------------- /libs/fmodex/inc/fmod_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/fmodex/inc/fmod_codec.h -------------------------------------------------------------------------------- /libs/fmodex/inc/fmod_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/fmodex/inc/fmod_dsp.h -------------------------------------------------------------------------------- /libs/fmodex/lib/libfmodex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/fmodex/lib/libfmodex.a -------------------------------------------------------------------------------- /libs/fmodex/lib/libfmodexL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/fmodex/lib/libfmodexL.a -------------------------------------------------------------------------------- /libs/gettext/bin32/autopoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gettext/bin32/autopoint -------------------------------------------------------------------------------- /libs/gettext/bin32/msgen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gettext/bin32/msgen.exe -------------------------------------------------------------------------------- /libs/gettext/bin64/autopoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gettext/bin64/autopoint -------------------------------------------------------------------------------- /libs/gettext/bin64/msgen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gettext/bin64/msgen.exe -------------------------------------------------------------------------------- /libs/gettext/lib64/libintl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gettext/lib64/libintl.a -------------------------------------------------------------------------------- /libs/gme/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/CMakeLists.txt -------------------------------------------------------------------------------- /libs/gme/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/changes.txt -------------------------------------------------------------------------------- /libs/gme/demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/demo/CMakeLists.txt -------------------------------------------------------------------------------- /libs/gme/demo/Wave_Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/demo/Wave_Writer.h -------------------------------------------------------------------------------- /libs/gme/demo/basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/demo/basics.c -------------------------------------------------------------------------------- /libs/gme/demo/cpp_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/demo/cpp_basics.cpp -------------------------------------------------------------------------------- /libs/gme/demo/features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/demo/features.c -------------------------------------------------------------------------------- /libs/gme/design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/design.txt -------------------------------------------------------------------------------- /libs/gme/gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme.txt -------------------------------------------------------------------------------- /libs/gme/gme/Ay_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ay_Apu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Ay_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ay_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/Ay_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ay_Cpu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Ay_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ay_Cpu.h -------------------------------------------------------------------------------- /libs/gme/gme/Ay_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ay_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Ay_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ay_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Blip_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Blip_Buffer.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Blip_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Blip_Buffer.h -------------------------------------------------------------------------------- /libs/gme/gme/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/CMakeLists.txt -------------------------------------------------------------------------------- /libs/gme/gme/Classic_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Classic_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Classic_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Classic_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Data_Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Data_Reader.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Data_Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Data_Reader.h -------------------------------------------------------------------------------- /libs/gme/gme/Fir_Resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Fir_Resampler.h -------------------------------------------------------------------------------- /libs/gme/gme/Gb_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gb_Apu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Gb_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gb_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/Gb_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gb_Cpu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Gb_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gb_Cpu.h -------------------------------------------------------------------------------- /libs/gme/gme/Gb_Oscs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gb_Oscs.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Gb_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gb_Oscs.h -------------------------------------------------------------------------------- /libs/gme/gme/Gbs_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gbs_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Gbs_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gbs_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Gme_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gme_File.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Gme_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gme_File.h -------------------------------------------------------------------------------- /libs/gme/gme/Gym_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gym_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Gym_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Gym_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Hes_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Hes_Apu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Hes_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Hes_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/Hes_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Hes_Cpu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Hes_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Hes_Cpu.h -------------------------------------------------------------------------------- /libs/gme/gme/Hes_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Hes_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Hes_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Hes_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Kss_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Kss_Cpu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Kss_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Kss_Cpu.h -------------------------------------------------------------------------------- /libs/gme/gme/Kss_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Kss_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Kss_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Kss_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Kss_Scc_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Kss_Scc_Apu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Kss_Scc_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Kss_Scc_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/M3u_Playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/M3u_Playlist.h -------------------------------------------------------------------------------- /libs/gme/gme/Multi_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Multi_Buffer.h -------------------------------------------------------------------------------- /libs/gme/gme/Music_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Music_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Music_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Music_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Nes_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nes_Apu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Nes_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nes_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/Nes_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nes_Cpu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Nes_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nes_Cpu.h -------------------------------------------------------------------------------- /libs/gme/gme/Nes_Fme7_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nes_Fme7_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/Nes_Namco_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nes_Namco_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/Nes_Oscs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nes_Oscs.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Nes_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nes_Oscs.h -------------------------------------------------------------------------------- /libs/gme/gme/Nes_Vrc6_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nes_Vrc6_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/Nsf_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nsf_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Nsf_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nsf_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Nsfe_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nsfe_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Nsfe_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Nsfe_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Sap_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Sap_Apu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Sap_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Sap_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/Sap_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Sap_Cpu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Sap_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Sap_Cpu.h -------------------------------------------------------------------------------- /libs/gme/gme/Sap_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Sap_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Sap_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Sap_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Sms_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Sms_Apu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Sms_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Sms_Apu.h -------------------------------------------------------------------------------- /libs/gme/gme/Sms_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Sms_Oscs.h -------------------------------------------------------------------------------- /libs/gme/gme/Snes_Spc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Snes_Spc.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Snes_Spc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Snes_Spc.h -------------------------------------------------------------------------------- /libs/gme/gme/Spc_Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Spc_Cpu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Spc_Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Spc_Cpu.h -------------------------------------------------------------------------------- /libs/gme/gme/Spc_Dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Spc_Dsp.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Spc_Dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Spc_Dsp.h -------------------------------------------------------------------------------- /libs/gme/gme/Spc_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Spc_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Spc_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Spc_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Spc_Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Spc_Filter.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Spc_Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Spc_Filter.h -------------------------------------------------------------------------------- /libs/gme/gme/Vgm_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Vgm_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Vgm_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Vgm_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Vgm_Emu_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Vgm_Emu_Impl.h -------------------------------------------------------------------------------- /libs/gme/gme/Ym2413_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ym2413_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Ym2413_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ym2413_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/Ym2612_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ym2612_Emu.cpp -------------------------------------------------------------------------------- /libs/gme/gme/Ym2612_Emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/Ym2612_Emu.h -------------------------------------------------------------------------------- /libs/gme/gme/blargg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/blargg_common.h -------------------------------------------------------------------------------- /libs/gme/gme/blargg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/blargg_config.h -------------------------------------------------------------------------------- /libs/gme/gme/blargg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/blargg_endian.h -------------------------------------------------------------------------------- /libs/gme/gme/blargg_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/blargg_source.h -------------------------------------------------------------------------------- /libs/gme/gme/gb_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/gb_cpu_io.h -------------------------------------------------------------------------------- /libs/gme/gme/gme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/gme.cpp -------------------------------------------------------------------------------- /libs/gme/gme/gme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/gme.h -------------------------------------------------------------------------------- /libs/gme/gme/gme_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/gme_types.h -------------------------------------------------------------------------------- /libs/gme/gme/gme_types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/gme_types.h.in -------------------------------------------------------------------------------- /libs/gme/gme/hes_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/hes_cpu_io.h -------------------------------------------------------------------------------- /libs/gme/gme/libgme.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/libgme.pc.in -------------------------------------------------------------------------------- /libs/gme/gme/nes_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/nes_cpu_io.h -------------------------------------------------------------------------------- /libs/gme/gme/sap_cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/gme/sap_cpu_io.h -------------------------------------------------------------------------------- /libs/gme/include/gme/gme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/include/gme/gme.h -------------------------------------------------------------------------------- /libs/gme/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/license.txt -------------------------------------------------------------------------------- /libs/gme/player/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/player/player.cpp -------------------------------------------------------------------------------- /libs/gme/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/readme.txt -------------------------------------------------------------------------------- /libs/gme/test.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/test.m3u -------------------------------------------------------------------------------- /libs/gme/test.nsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/test.nsf -------------------------------------------------------------------------------- /libs/gme/win32/libgme.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/win32/libgme.dll.a -------------------------------------------------------------------------------- /libs/gme/win64/libgme.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/gme/win64/libgme.dll.a -------------------------------------------------------------------------------- /libs/libgme.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libgme.props -------------------------------------------------------------------------------- /libs/libopenmpt.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libopenmpt.props -------------------------------------------------------------------------------- /libs/libopenmpt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libopenmpt/LICENSE.txt -------------------------------------------------------------------------------- /libs/libopenmpt/SRB2NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libopenmpt/SRB2NOTE.md -------------------------------------------------------------------------------- /libs/libopenmpt/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libopenmpt/changelog.md -------------------------------------------------------------------------------- /libs/libpng-src/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/ANNOUNCE -------------------------------------------------------------------------------- /libs/libpng-src/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/AUTHORS -------------------------------------------------------------------------------- /libs/libpng-src/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/CHANGES -------------------------------------------------------------------------------- /libs/libpng-src/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/INSTALL -------------------------------------------------------------------------------- /libs/libpng-src/KNOWNBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/KNOWNBUG -------------------------------------------------------------------------------- /libs/libpng-src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/LICENSE -------------------------------------------------------------------------------- /libs/libpng-src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/Makefile.am -------------------------------------------------------------------------------- /libs/libpng-src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/Makefile.in -------------------------------------------------------------------------------- /libs/libpng-src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/README -------------------------------------------------------------------------------- /libs/libpng-src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/TODO -------------------------------------------------------------------------------- /libs/libpng-src/TRADEMARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/TRADEMARK -------------------------------------------------------------------------------- /libs/libpng-src/Y2KINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/Y2KINFO -------------------------------------------------------------------------------- /libs/libpng-src/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/aclocal.m4 -------------------------------------------------------------------------------- /libs/libpng-src/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/autogen.sh -------------------------------------------------------------------------------- /libs/libpng-src/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/compile -------------------------------------------------------------------------------- /libs/libpng-src/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/config.guess -------------------------------------------------------------------------------- /libs/libpng-src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/config.h.in -------------------------------------------------------------------------------- /libs/libpng-src/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/config.sub -------------------------------------------------------------------------------- /libs/libpng-src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/configure -------------------------------------------------------------------------------- /libs/libpng-src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/configure.ac -------------------------------------------------------------------------------- /libs/libpng-src/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/depcomp -------------------------------------------------------------------------------- /libs/libpng-src/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/example.c -------------------------------------------------------------------------------- /libs/libpng-src/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/install-sh -------------------------------------------------------------------------------- /libs/libpng-src/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/libpng.3 -------------------------------------------------------------------------------- /libs/libpng-src/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/libpng.pc.in -------------------------------------------------------------------------------- /libs/libpng-src/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/libpngpf.3 -------------------------------------------------------------------------------- /libs/libpng-src/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/ltmain.sh -------------------------------------------------------------------------------- /libs/libpng-src/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/missing -------------------------------------------------------------------------------- /libs/libpng-src/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/png.5 -------------------------------------------------------------------------------- /libs/libpng-src/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/png.c -------------------------------------------------------------------------------- /libs/libpng-src/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/png.h -------------------------------------------------------------------------------- /libs/libpng-src/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngbar.jpg -------------------------------------------------------------------------------- /libs/libpng-src/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngbar.png -------------------------------------------------------------------------------- /libs/libpng-src/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngdebug.h -------------------------------------------------------------------------------- /libs/libpng-src/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngerror.c -------------------------------------------------------------------------------- /libs/libpng-src/pnggccrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pnggccrd.c -------------------------------------------------------------------------------- /libs/libpng-src/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngget.c -------------------------------------------------------------------------------- /libs/libpng-src/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pnginfo.h -------------------------------------------------------------------------------- /libs/libpng-src/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngmem.c -------------------------------------------------------------------------------- /libs/libpng-src/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngnow.png -------------------------------------------------------------------------------- /libs/libpng-src/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngpread.c -------------------------------------------------------------------------------- /libs/libpng-src/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngpriv.h -------------------------------------------------------------------------------- /libs/libpng-src/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngread.c -------------------------------------------------------------------------------- /libs/libpng-src/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngrio.c -------------------------------------------------------------------------------- /libs/libpng-src/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngrtran.c -------------------------------------------------------------------------------- /libs/libpng-src/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngrutil.c -------------------------------------------------------------------------------- /libs/libpng-src/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngset.c -------------------------------------------------------------------------------- /libs/libpng-src/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngstruct.h -------------------------------------------------------------------------------- /libs/libpng-src/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngtest.c -------------------------------------------------------------------------------- /libs/libpng-src/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngtest.png -------------------------------------------------------------------------------- /libs/libpng-src/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngtrans.c -------------------------------------------------------------------------------- /libs/libpng-src/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngusr.dfa -------------------------------------------------------------------------------- /libs/libpng-src/pngvcrd.c: -------------------------------------------------------------------------------- 1 | /* pnggvrd.c was removed from libpng-1.2.20. */ 2 | -------------------------------------------------------------------------------- /libs/libpng-src/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngwio.c -------------------------------------------------------------------------------- /libs/libpng-src/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngwrite.c -------------------------------------------------------------------------------- /libs/libpng-src/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngwtran.c -------------------------------------------------------------------------------- /libs/libpng-src/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/pngwutil.c -------------------------------------------------------------------------------- /libs/libpng-src/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng-src/test-driver -------------------------------------------------------------------------------- /libs/libpng-src/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /libs/libpng-src/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-sbit 3 | -------------------------------------------------------------------------------- /libs/libpng-src/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-threshold 3 | -------------------------------------------------------------------------------- /libs/libpng-src/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-transform 3 | -------------------------------------------------------------------------------- /libs/libpng-src/tests/pngvalid-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --transform 3 | -------------------------------------------------------------------------------- /libs/libpng.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/libpng.props -------------------------------------------------------------------------------- /libs/miniupnpc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/.gitignore -------------------------------------------------------------------------------- /libs/miniupnpc/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/Changelog.txt -------------------------------------------------------------------------------- /libs/miniupnpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/LICENSE -------------------------------------------------------------------------------- /libs/miniupnpc/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/MANIFEST.in -------------------------------------------------------------------------------- /libs/miniupnpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/Makefile -------------------------------------------------------------------------------- /libs/miniupnpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/README -------------------------------------------------------------------------------- /libs/miniupnpc/VERSION: -------------------------------------------------------------------------------- 1 | 1.6 2 | -------------------------------------------------------------------------------- /libs/miniupnpc/bsdqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/bsdqueue.h -------------------------------------------------------------------------------- /libs/miniupnpc/declspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/declspec.h -------------------------------------------------------------------------------- /libs/miniupnpc/minisoap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/minisoap.c -------------------------------------------------------------------------------- /libs/miniupnpc/minisoap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/minisoap.h -------------------------------------------------------------------------------- /libs/miniupnpc/minissdpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/minissdpc.c -------------------------------------------------------------------------------- /libs/miniupnpc/minissdpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/minissdpc.h -------------------------------------------------------------------------------- /libs/miniupnpc/miniupnpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/miniupnpc.c -------------------------------------------------------------------------------- /libs/miniupnpc/miniupnpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/miniupnpc.h -------------------------------------------------------------------------------- /libs/miniupnpc/miniwget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/miniwget.c -------------------------------------------------------------------------------- /libs/miniupnpc/miniwget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/miniwget.h -------------------------------------------------------------------------------- /libs/miniupnpc/minixml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/minixml.c -------------------------------------------------------------------------------- /libs/miniupnpc/minixml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/minixml.h -------------------------------------------------------------------------------- /libs/miniupnpc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/setup.py -------------------------------------------------------------------------------- /libs/miniupnpc/upnpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/miniupnpc/upnpc.c -------------------------------------------------------------------------------- /libs/win-iconv/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/win-iconv/ChangeLog -------------------------------------------------------------------------------- /libs/win-iconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/win-iconv/Makefile -------------------------------------------------------------------------------- /libs/win-iconv/iconv.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/win-iconv/iconv.def -------------------------------------------------------------------------------- /libs/win-iconv/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/win-iconv/iconv.h -------------------------------------------------------------------------------- /libs/win-iconv/mlang.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/win-iconv/mlang.def -------------------------------------------------------------------------------- /libs/win-iconv/mlang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/win-iconv/mlang.h -------------------------------------------------------------------------------- /libs/win-iconv/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/win-iconv/readme.txt -------------------------------------------------------------------------------- /libs/win-iconv/win_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/win-iconv/win_iconv.c -------------------------------------------------------------------------------- /libs/zlib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib.props -------------------------------------------------------------------------------- /libs/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /libs/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/ChangeLog -------------------------------------------------------------------------------- /libs/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/FAQ -------------------------------------------------------------------------------- /libs/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/INDEX -------------------------------------------------------------------------------- /libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/Makefile -------------------------------------------------------------------------------- /libs/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/Makefile.in -------------------------------------------------------------------------------- /libs/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/README -------------------------------------------------------------------------------- /libs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/adler32.c -------------------------------------------------------------------------------- /libs/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/compress.c -------------------------------------------------------------------------------- /libs/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/configure -------------------------------------------------------------------------------- /libs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/crc32.c -------------------------------------------------------------------------------- /libs/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/crc32.h -------------------------------------------------------------------------------- /libs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/deflate.c -------------------------------------------------------------------------------- /libs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/deflate.h -------------------------------------------------------------------------------- /libs/zlib/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/doc/rfc1950.txt -------------------------------------------------------------------------------- /libs/zlib/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/doc/rfc1951.txt -------------------------------------------------------------------------------- /libs/zlib/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/doc/rfc1952.txt -------------------------------------------------------------------------------- /libs/zlib/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/doc/txtvsbin.txt -------------------------------------------------------------------------------- /libs/zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/examples/gun.c -------------------------------------------------------------------------------- /libs/zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /libs/zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /libs/zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /libs/zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/examples/zran.c -------------------------------------------------------------------------------- /libs/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/gzclose.c -------------------------------------------------------------------------------- /libs/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/gzguts.h -------------------------------------------------------------------------------- /libs/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/gzlib.c -------------------------------------------------------------------------------- /libs/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/gzread.c -------------------------------------------------------------------------------- /libs/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/gzwrite.c -------------------------------------------------------------------------------- /libs/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/infback.c -------------------------------------------------------------------------------- /libs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/inffast.c -------------------------------------------------------------------------------- /libs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/inffast.h -------------------------------------------------------------------------------- /libs/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/inffixed.h -------------------------------------------------------------------------------- /libs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/inflate.c -------------------------------------------------------------------------------- /libs/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/inflate.h -------------------------------------------------------------------------------- /libs/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/inftrees.c -------------------------------------------------------------------------------- /libs/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/inftrees.h -------------------------------------------------------------------------------- /libs/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/make_vms.com -------------------------------------------------------------------------------- /libs/zlib/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/old/Makefile.emx -------------------------------------------------------------------------------- /libs/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/old/README -------------------------------------------------------------------------------- /libs/zlib/old/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/old/as400/bndsrc -------------------------------------------------------------------------------- /libs/zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/old/descrip.mms -------------------------------------------------------------------------------- /libs/zlib/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/old/os2/zlib.def -------------------------------------------------------------------------------- /libs/zlib/os400/README400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/os400/README400 -------------------------------------------------------------------------------- /libs/zlib/os400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/os400/bndsrc -------------------------------------------------------------------------------- /libs/zlib/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/os400/make.sh -------------------------------------------------------------------------------- /libs/zlib/os400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/os400/zlib.inc -------------------------------------------------------------------------------- /libs/zlib/projects/visualc9/.gitignore: -------------------------------------------------------------------------------- 1 | /Win32 2 | /x64 3 | /zlib.vcproj.*.*.user 4 | -------------------------------------------------------------------------------- /libs/zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /libs/zlib/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/test/example.c -------------------------------------------------------------------------------- /libs/zlib/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/test/infcover.c -------------------------------------------------------------------------------- /libs/zlib/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/test/minigzip.c -------------------------------------------------------------------------------- /libs/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/treebuild.xml -------------------------------------------------------------------------------- /libs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/trees.c -------------------------------------------------------------------------------- /libs/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/trees.h -------------------------------------------------------------------------------- /libs/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/uncompr.c -------------------------------------------------------------------------------- /libs/zlib/win32/libz32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/win32/libz32.a -------------------------------------------------------------------------------- /libs/zlib/win32/libz64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/win32/libz64.a -------------------------------------------------------------------------------- /libs/zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/win32/zlib.def -------------------------------------------------------------------------------- /libs/zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /libs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zconf.h -------------------------------------------------------------------------------- /libs/zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /libs/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zconf.h.in -------------------------------------------------------------------------------- /libs/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zlib.3 -------------------------------------------------------------------------------- /libs/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zlib.h -------------------------------------------------------------------------------- /libs/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zlib.map -------------------------------------------------------------------------------- /libs/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /libs/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zlib.pc.in -------------------------------------------------------------------------------- /libs/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zlib2ansi -------------------------------------------------------------------------------- /libs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zutil.c -------------------------------------------------------------------------------- /libs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlib/zutil.h -------------------------------------------------------------------------------- /libs/zlibVC6.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/libs/zlibVC6.diff -------------------------------------------------------------------------------- /srb2-vc10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/srb2-vc10.sln -------------------------------------------------------------------------------- /srb2-vc9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/srb2-vc9.sln -------------------------------------------------------------------------------- /srb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/srb2.png -------------------------------------------------------------------------------- /srb2banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/srb2banner.png -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | /cscope.out 2 | /srb2wii 3 | -------------------------------------------------------------------------------- /src/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Android.mk -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.d/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile.d/detect.mk -------------------------------------------------------------------------------- /src/Makefile.d/features.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile.d/features.mk -------------------------------------------------------------------------------- /src/Makefile.d/nix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile.d/nix.mk -------------------------------------------------------------------------------- /src/Makefile.d/old.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile.d/old.mk -------------------------------------------------------------------------------- /src/Makefile.d/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile.d/platform.mk -------------------------------------------------------------------------------- /src/Makefile.d/sdl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile.d/sdl.mk -------------------------------------------------------------------------------- /src/Makefile.d/util.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile.d/util.mk -------------------------------------------------------------------------------- /src/Makefile.d/versions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile.d/versions.mk -------------------------------------------------------------------------------- /src/Makefile.d/win32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Makefile.d/win32.mk -------------------------------------------------------------------------------- /src/Sourcefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/Sourcefile -------------------------------------------------------------------------------- /src/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/am_map.c -------------------------------------------------------------------------------- /src/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/am_map.h -------------------------------------------------------------------------------- /src/android/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/android/README -------------------------------------------------------------------------------- /src/android/i_cdmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/android/i_cdmus.c -------------------------------------------------------------------------------- /src/android/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/android/i_main.c -------------------------------------------------------------------------------- /src/android/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/android/i_sound.c -------------------------------------------------------------------------------- /src/android/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/android/i_system.c -------------------------------------------------------------------------------- /src/android/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/android/i_video.c -------------------------------------------------------------------------------- /src/android/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/android/i_video.h -------------------------------------------------------------------------------- /src/android/jni_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/android/jni_main.h -------------------------------------------------------------------------------- /src/apng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/apng.c -------------------------------------------------------------------------------- /src/apng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/apng.h -------------------------------------------------------------------------------- /src/asm_defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/asm_defs.inc -------------------------------------------------------------------------------- /src/b_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/b_bot.c -------------------------------------------------------------------------------- /src/b_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/b_bot.h -------------------------------------------------------------------------------- /src/blua/BLUA.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/BLUA.htm -------------------------------------------------------------------------------- /src/blua/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sourcefile(c) 2 | -------------------------------------------------------------------------------- /src/blua/Sourcefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/Sourcefile -------------------------------------------------------------------------------- /src/blua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lapi.c -------------------------------------------------------------------------------- /src/blua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lapi.h -------------------------------------------------------------------------------- /src/blua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lauxlib.c -------------------------------------------------------------------------------- /src/blua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lauxlib.h -------------------------------------------------------------------------------- /src/blua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lbaselib.c -------------------------------------------------------------------------------- /src/blua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lcode.c -------------------------------------------------------------------------------- /src/blua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lcode.h -------------------------------------------------------------------------------- /src/blua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ldebug.c -------------------------------------------------------------------------------- /src/blua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ldebug.h -------------------------------------------------------------------------------- /src/blua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ldo.c -------------------------------------------------------------------------------- /src/blua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ldo.h -------------------------------------------------------------------------------- /src/blua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ldump.c -------------------------------------------------------------------------------- /src/blua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lfunc.c -------------------------------------------------------------------------------- /src/blua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lfunc.h -------------------------------------------------------------------------------- /src/blua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lgc.c -------------------------------------------------------------------------------- /src/blua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lgc.h -------------------------------------------------------------------------------- /src/blua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/linit.c -------------------------------------------------------------------------------- /src/blua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/liolib.c -------------------------------------------------------------------------------- /src/blua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/llex.c -------------------------------------------------------------------------------- /src/blua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/llex.h -------------------------------------------------------------------------------- /src/blua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/llimits.h -------------------------------------------------------------------------------- /src/blua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lmem.c -------------------------------------------------------------------------------- /src/blua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lmem.h -------------------------------------------------------------------------------- /src/blua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lobject.c -------------------------------------------------------------------------------- /src/blua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lobject.h -------------------------------------------------------------------------------- /src/blua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lopcodes.c -------------------------------------------------------------------------------- /src/blua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lopcodes.h -------------------------------------------------------------------------------- /src/blua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lparser.c -------------------------------------------------------------------------------- /src/blua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lparser.h -------------------------------------------------------------------------------- /src/blua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lstate.c -------------------------------------------------------------------------------- /src/blua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lstate.h -------------------------------------------------------------------------------- /src/blua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lstring.c -------------------------------------------------------------------------------- /src/blua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lstring.h -------------------------------------------------------------------------------- /src/blua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lstrlib.c -------------------------------------------------------------------------------- /src/blua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ltable.c -------------------------------------------------------------------------------- /src/blua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ltable.h -------------------------------------------------------------------------------- /src/blua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ltablib.c -------------------------------------------------------------------------------- /src/blua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ltm.c -------------------------------------------------------------------------------- /src/blua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/ltm.h -------------------------------------------------------------------------------- /src/blua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lua.h -------------------------------------------------------------------------------- /src/blua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/luaconf.h -------------------------------------------------------------------------------- /src/blua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lualib.h -------------------------------------------------------------------------------- /src/blua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lundump.c -------------------------------------------------------------------------------- /src/blua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lundump.h -------------------------------------------------------------------------------- /src/blua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lvm.c -------------------------------------------------------------------------------- /src/blua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lvm.h -------------------------------------------------------------------------------- /src/blua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lzio.c -------------------------------------------------------------------------------- /src/blua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/blua/lzio.h -------------------------------------------------------------------------------- /src/byteptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/byteptr.h -------------------------------------------------------------------------------- /src/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/command.c -------------------------------------------------------------------------------- /src/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/command.h -------------------------------------------------------------------------------- /src/comptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/comptime.c -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/console.c -------------------------------------------------------------------------------- /src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/console.h -------------------------------------------------------------------------------- /src/d_clisrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_clisrv.c -------------------------------------------------------------------------------- /src/d_clisrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_clisrv.h -------------------------------------------------------------------------------- /src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_event.h -------------------------------------------------------------------------------- /src/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_main.c -------------------------------------------------------------------------------- /src/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_main.h -------------------------------------------------------------------------------- /src/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_net.c -------------------------------------------------------------------------------- /src/d_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_net.h -------------------------------------------------------------------------------- /src/d_netcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_netcmd.c -------------------------------------------------------------------------------- /src/d_netcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_netcmd.h -------------------------------------------------------------------------------- /src/d_netfil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_netfil.c -------------------------------------------------------------------------------- /src/d_netfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_netfil.h -------------------------------------------------------------------------------- /src/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_player.h -------------------------------------------------------------------------------- /src/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_think.h -------------------------------------------------------------------------------- /src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/d_ticcmd.h -------------------------------------------------------------------------------- /src/deh_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/deh_lua.c -------------------------------------------------------------------------------- /src/deh_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/deh_lua.h -------------------------------------------------------------------------------- /src/deh_soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/deh_soc.c -------------------------------------------------------------------------------- /src/deh_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/deh_soc.h -------------------------------------------------------------------------------- /src/deh_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/deh_tables.c -------------------------------------------------------------------------------- /src/deh_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/deh_tables.h -------------------------------------------------------------------------------- /src/dehacked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/dehacked.c -------------------------------------------------------------------------------- /src/dehacked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/dehacked.h -------------------------------------------------------------------------------- /src/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/doomdata.h -------------------------------------------------------------------------------- /src/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/doomdef.h -------------------------------------------------------------------------------- /src/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/doomstat.h -------------------------------------------------------------------------------- /src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/doomtype.h -------------------------------------------------------------------------------- /src/dummy/i_cdmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/dummy/i_cdmus.c -------------------------------------------------------------------------------- /src/dummy/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/dummy/i_main.c -------------------------------------------------------------------------------- /src/dummy/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/dummy/i_sound.c -------------------------------------------------------------------------------- /src/dummy/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/dummy/i_system.c -------------------------------------------------------------------------------- /src/dummy/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/dummy/i_video.c -------------------------------------------------------------------------------- /src/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/endian.h -------------------------------------------------------------------------------- /src/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/f_finale.c -------------------------------------------------------------------------------- /src/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/f_finale.h -------------------------------------------------------------------------------- /src/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/f_wipe.c -------------------------------------------------------------------------------- /src/fastcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/fastcmp.h -------------------------------------------------------------------------------- /src/filesrch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/filesrch.c -------------------------------------------------------------------------------- /src/filesrch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/filesrch.h -------------------------------------------------------------------------------- /src/g_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/g_demo.c -------------------------------------------------------------------------------- /src/g_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/g_demo.h -------------------------------------------------------------------------------- /src/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/g_game.c -------------------------------------------------------------------------------- /src/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/g_game.h -------------------------------------------------------------------------------- /src/g_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/g_input.c -------------------------------------------------------------------------------- /src/g_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/g_input.h -------------------------------------------------------------------------------- /src/g_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/g_state.h -------------------------------------------------------------------------------- /src/hardware/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sourcefile(c) 2 | -------------------------------------------------------------------------------- /src/hardware/Sourcefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/Sourcefile -------------------------------------------------------------------------------- /src/hardware/hw3dsdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw3dsdrv.h -------------------------------------------------------------------------------- /src/hardware/hw3sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw3sound.c -------------------------------------------------------------------------------- /src/hardware/hw3sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw3sound.h -------------------------------------------------------------------------------- /src/hardware/hw_batching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_batching.c -------------------------------------------------------------------------------- /src/hardware/hw_batching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_batching.h -------------------------------------------------------------------------------- /src/hardware/hw_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_bsp.c -------------------------------------------------------------------------------- /src/hardware/hw_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_cache.c -------------------------------------------------------------------------------- /src/hardware/hw_clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_clip.c -------------------------------------------------------------------------------- /src/hardware/hw_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_clip.h -------------------------------------------------------------------------------- /src/hardware/hw_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_data.h -------------------------------------------------------------------------------- /src/hardware/hw_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_defs.h -------------------------------------------------------------------------------- /src/hardware/hw_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_dll.h -------------------------------------------------------------------------------- /src/hardware/hw_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_draw.c -------------------------------------------------------------------------------- /src/hardware/hw_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_drv.h -------------------------------------------------------------------------------- /src/hardware/hw_glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_glob.h -------------------------------------------------------------------------------- /src/hardware/hw_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_light.c -------------------------------------------------------------------------------- /src/hardware/hw_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_light.h -------------------------------------------------------------------------------- /src/hardware/hw_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_main.c -------------------------------------------------------------------------------- /src/hardware/hw_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_main.h -------------------------------------------------------------------------------- /src/hardware/hw_md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_md2.c -------------------------------------------------------------------------------- /src/hardware/hw_md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_md2.h -------------------------------------------------------------------------------- /src/hardware/hw_md2load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_md2load.c -------------------------------------------------------------------------------- /src/hardware/hw_md2load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_md2load.h -------------------------------------------------------------------------------- /src/hardware/hw_md3load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_md3load.c -------------------------------------------------------------------------------- /src/hardware/hw_md3load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_md3load.h -------------------------------------------------------------------------------- /src/hardware/hw_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_model.c -------------------------------------------------------------------------------- /src/hardware/hw_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hw_model.h -------------------------------------------------------------------------------- /src/hardware/hws_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/hws_data.h -------------------------------------------------------------------------------- /src/hardware/u_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/u_list.c -------------------------------------------------------------------------------- /src/hardware/u_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hardware/u_list.h -------------------------------------------------------------------------------- /src/http-mserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/http-mserv.c -------------------------------------------------------------------------------- /src/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hu_stuff.c -------------------------------------------------------------------------------- /src/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/hu_stuff.h -------------------------------------------------------------------------------- /src/i_addrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_addrinfo.c -------------------------------------------------------------------------------- /src/i_addrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_addrinfo.h -------------------------------------------------------------------------------- /src/i_joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_joy.h -------------------------------------------------------------------------------- /src/i_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_net.h -------------------------------------------------------------------------------- /src/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_sound.h -------------------------------------------------------------------------------- /src/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_system.h -------------------------------------------------------------------------------- /src/i_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_tcp.c -------------------------------------------------------------------------------- /src/i_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_tcp.h -------------------------------------------------------------------------------- /src/i_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_threads.h -------------------------------------------------------------------------------- /src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/i_video.h -------------------------------------------------------------------------------- /src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/info.c -------------------------------------------------------------------------------- /src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/info.h -------------------------------------------------------------------------------- /src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/keys.h -------------------------------------------------------------------------------- /src/locale/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/locale/en.po -------------------------------------------------------------------------------- /src/locale/srb2.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/locale/srb2.pot -------------------------------------------------------------------------------- /src/lua_baselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_baselib.c -------------------------------------------------------------------------------- /src/lua_blockmaplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_blockmaplib.c -------------------------------------------------------------------------------- /src/lua_consolelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_consolelib.c -------------------------------------------------------------------------------- /src/lua_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_hook.h -------------------------------------------------------------------------------- /src/lua_hooklib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_hooklib.c -------------------------------------------------------------------------------- /src/lua_hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_hud.h -------------------------------------------------------------------------------- /src/lua_hudlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_hudlib.c -------------------------------------------------------------------------------- /src/lua_infolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_infolib.c -------------------------------------------------------------------------------- /src/lua_libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_libs.h -------------------------------------------------------------------------------- /src/lua_maplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_maplib.c -------------------------------------------------------------------------------- /src/lua_mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_mathlib.c -------------------------------------------------------------------------------- /src/lua_mobjlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_mobjlib.c -------------------------------------------------------------------------------- /src/lua_playerlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_playerlib.c -------------------------------------------------------------------------------- /src/lua_polyobjlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_polyobjlib.c -------------------------------------------------------------------------------- /src/lua_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_script.c -------------------------------------------------------------------------------- /src/lua_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_script.h -------------------------------------------------------------------------------- /src/lua_skinlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_skinlib.c -------------------------------------------------------------------------------- /src/lua_taglib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_taglib.c -------------------------------------------------------------------------------- /src/lua_thinkerlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lua_thinkerlib.c -------------------------------------------------------------------------------- /src/lzf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lzf.c -------------------------------------------------------------------------------- /src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/lzf.h -------------------------------------------------------------------------------- /src/m_aatree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_aatree.c -------------------------------------------------------------------------------- /src/m_aatree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_aatree.h -------------------------------------------------------------------------------- /src/m_anigif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_anigif.c -------------------------------------------------------------------------------- /src/m_anigif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_anigif.h -------------------------------------------------------------------------------- /src/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_argv.c -------------------------------------------------------------------------------- /src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_argv.h -------------------------------------------------------------------------------- /src/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_bbox.c -------------------------------------------------------------------------------- /src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_bbox.h -------------------------------------------------------------------------------- /src/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_cheat.c -------------------------------------------------------------------------------- /src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_cheat.h -------------------------------------------------------------------------------- /src/m_cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_cond.c -------------------------------------------------------------------------------- /src/m_cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_cond.h -------------------------------------------------------------------------------- /src/m_dllist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_dllist.h -------------------------------------------------------------------------------- /src/m_fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_fixed.c -------------------------------------------------------------------------------- /src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_fixed.h -------------------------------------------------------------------------------- /src/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_menu.c -------------------------------------------------------------------------------- /src/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_menu.h -------------------------------------------------------------------------------- /src/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_misc.c -------------------------------------------------------------------------------- /src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_misc.h -------------------------------------------------------------------------------- /src/m_perfstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_perfstats.c -------------------------------------------------------------------------------- /src/m_perfstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_perfstats.h -------------------------------------------------------------------------------- /src/m_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_queue.c -------------------------------------------------------------------------------- /src/m_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_queue.h -------------------------------------------------------------------------------- /src/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_random.c -------------------------------------------------------------------------------- /src/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_random.h -------------------------------------------------------------------------------- /src/m_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/m_swap.h -------------------------------------------------------------------------------- /src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/md5.c -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/mserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/mserv.c -------------------------------------------------------------------------------- /src/mserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/mserv.h -------------------------------------------------------------------------------- /src/p5prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p5prof.h -------------------------------------------------------------------------------- /src/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_ceilng.c -------------------------------------------------------------------------------- /src/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_enemy.c -------------------------------------------------------------------------------- /src/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_floor.c -------------------------------------------------------------------------------- /src/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_inter.c -------------------------------------------------------------------------------- /src/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_lights.c -------------------------------------------------------------------------------- /src/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_local.h -------------------------------------------------------------------------------- /src/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_map.c -------------------------------------------------------------------------------- /src/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_maputl.c -------------------------------------------------------------------------------- /src/p_maputl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_maputl.h -------------------------------------------------------------------------------- /src/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_mobj.c -------------------------------------------------------------------------------- /src/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_mobj.h -------------------------------------------------------------------------------- /src/p_polyobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_polyobj.c -------------------------------------------------------------------------------- /src/p_polyobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_polyobj.h -------------------------------------------------------------------------------- /src/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_pspr.h -------------------------------------------------------------------------------- /src/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_saveg.c -------------------------------------------------------------------------------- /src/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_saveg.h -------------------------------------------------------------------------------- /src/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_setup.c -------------------------------------------------------------------------------- /src/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_setup.h -------------------------------------------------------------------------------- /src/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_sight.c -------------------------------------------------------------------------------- /src/p_slopes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_slopes.c -------------------------------------------------------------------------------- /src/p_slopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_slopes.h -------------------------------------------------------------------------------- /src/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_spec.c -------------------------------------------------------------------------------- /src/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_spec.h -------------------------------------------------------------------------------- /src/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_telept.c -------------------------------------------------------------------------------- /src/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_tick.c -------------------------------------------------------------------------------- /src/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_tick.h -------------------------------------------------------------------------------- /src/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/p_user.c -------------------------------------------------------------------------------- /src/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_bsp.c -------------------------------------------------------------------------------- /src/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_bsp.h -------------------------------------------------------------------------------- /src/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_data.c -------------------------------------------------------------------------------- /src/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_data.h -------------------------------------------------------------------------------- /src/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_defs.h -------------------------------------------------------------------------------- /src/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_draw.c -------------------------------------------------------------------------------- /src/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_draw.h -------------------------------------------------------------------------------- /src/r_draw16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_draw16.c -------------------------------------------------------------------------------- /src/r_draw8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_draw8.c -------------------------------------------------------------------------------- /src/r_draw8_npo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_draw8_npo2.c -------------------------------------------------------------------------------- /src/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_local.h -------------------------------------------------------------------------------- /src/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_main.c -------------------------------------------------------------------------------- /src/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_main.h -------------------------------------------------------------------------------- /src/r_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_patch.c -------------------------------------------------------------------------------- /src/r_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_patch.h -------------------------------------------------------------------------------- /src/r_patchrotation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_patchrotation.c -------------------------------------------------------------------------------- /src/r_patchrotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_patchrotation.h -------------------------------------------------------------------------------- /src/r_picformats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_picformats.c -------------------------------------------------------------------------------- /src/r_picformats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_picformats.h -------------------------------------------------------------------------------- /src/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_plane.c -------------------------------------------------------------------------------- /src/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_plane.h -------------------------------------------------------------------------------- /src/r_portal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_portal.c -------------------------------------------------------------------------------- /src/r_portal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_portal.h -------------------------------------------------------------------------------- /src/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_segs.c -------------------------------------------------------------------------------- /src/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_segs.h -------------------------------------------------------------------------------- /src/r_skins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_skins.c -------------------------------------------------------------------------------- /src/r_skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_skins.h -------------------------------------------------------------------------------- /src/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_sky.c -------------------------------------------------------------------------------- /src/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_sky.h -------------------------------------------------------------------------------- /src/r_splats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_splats.c -------------------------------------------------------------------------------- /src/r_splats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_splats.h -------------------------------------------------------------------------------- /src/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_state.h -------------------------------------------------------------------------------- /src/r_textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_textures.c -------------------------------------------------------------------------------- /src/r_textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_textures.h -------------------------------------------------------------------------------- /src/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_things.c -------------------------------------------------------------------------------- /src/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/r_things.h -------------------------------------------------------------------------------- /src/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/s_sound.c -------------------------------------------------------------------------------- /src/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/s_sound.h -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/sdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/CMakeLists.txt -------------------------------------------------------------------------------- /src/sdl/IMG_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/IMG_xpm.c -------------------------------------------------------------------------------- /src/sdl/MakeCYG.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/MakeCYG.cfg -------------------------------------------------------------------------------- /src/sdl/SDL_icon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/SDL_icon.xpm -------------------------------------------------------------------------------- /src/sdl/Sourcefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/Sourcefile -------------------------------------------------------------------------------- /src/sdl/Srb2SDL-vc9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/Srb2SDL-vc9.vcproj -------------------------------------------------------------------------------- /src/sdl/Srb2SDL.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/Srb2SDL.dsp -------------------------------------------------------------------------------- /src/sdl/Srb2SDL.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/Srb2SDL.dsw -------------------------------------------------------------------------------- /src/sdl/Srb2SDL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/Srb2SDL.ico -------------------------------------------------------------------------------- /src/sdl/Srb2SDL.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/Srb2SDL.props -------------------------------------------------------------------------------- /src/sdl/dosstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/dosstr.c -------------------------------------------------------------------------------- /src/sdl/endtxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/endtxt.c -------------------------------------------------------------------------------- /src/sdl/endtxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/endtxt.h -------------------------------------------------------------------------------- /src/sdl/hwsym_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/hwsym_sdl.c -------------------------------------------------------------------------------- /src/sdl/hwsym_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/hwsym_sdl.h -------------------------------------------------------------------------------- /src/sdl/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/i_main.c -------------------------------------------------------------------------------- /src/sdl/i_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/i_net.c -------------------------------------------------------------------------------- /src/sdl/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/i_system.c -------------------------------------------------------------------------------- /src/sdl/i_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/i_threads.c -------------------------------------------------------------------------------- /src/sdl/i_ttf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/i_ttf.c -------------------------------------------------------------------------------- /src/sdl/i_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/i_ttf.h -------------------------------------------------------------------------------- /src/sdl/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/i_video.c -------------------------------------------------------------------------------- /src/sdl/macosx/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sdl/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/macosx/Info.plist -------------------------------------------------------------------------------- /src/sdl/macosx/mac_alert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/macosx/mac_alert.c -------------------------------------------------------------------------------- /src/sdl/macosx/mac_alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/macosx/mac_alert.h -------------------------------------------------------------------------------- /src/sdl/mixer_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/mixer_sound.c -------------------------------------------------------------------------------- /src/sdl/ogl_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/ogl_sdl.c -------------------------------------------------------------------------------- /src/sdl/ogl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/ogl_sdl.h -------------------------------------------------------------------------------- /src/sdl/sdl_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/sdl_sound.c -------------------------------------------------------------------------------- /src/sdl/sdlmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/sdlmain.h -------------------------------------------------------------------------------- /src/sdl/srb2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sdl/srb2.ttf -------------------------------------------------------------------------------- /src/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sounds.c -------------------------------------------------------------------------------- /src/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/sounds.h -------------------------------------------------------------------------------- /src/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/st_stuff.c -------------------------------------------------------------------------------- /src/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/st_stuff.h -------------------------------------------------------------------------------- /src/strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/strcasestr.c -------------------------------------------------------------------------------- /src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/string.c -------------------------------------------------------------------------------- /src/t_facon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/t_facon.c -------------------------------------------------------------------------------- /src/t_fsin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/t_fsin.c -------------------------------------------------------------------------------- /src/t_ftan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/t_ftan.c -------------------------------------------------------------------------------- /src/t_tan2a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/t_tan2a.c -------------------------------------------------------------------------------- /src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/tables.c -------------------------------------------------------------------------------- /src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/tables.h -------------------------------------------------------------------------------- /src/taglist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/taglist.c -------------------------------------------------------------------------------- /src/taglist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/taglist.h -------------------------------------------------------------------------------- /src/tmap.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/tmap.nas -------------------------------------------------------------------------------- /src/tmap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/tmap.s -------------------------------------------------------------------------------- /src/tmap_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/tmap_asm.s -------------------------------------------------------------------------------- /src/tmap_mmx.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/tmap_mmx.nas -------------------------------------------------------------------------------- /src/tmap_vc.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/tmap_vc.nas -------------------------------------------------------------------------------- /src/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/v_video.c -------------------------------------------------------------------------------- /src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/v_video.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/version.h -------------------------------------------------------------------------------- /src/vid_copy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/vid_copy.s -------------------------------------------------------------------------------- /src/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/w_wad.c -------------------------------------------------------------------------------- /src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/w_wad.h -------------------------------------------------------------------------------- /src/win32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/CMakeLists.txt -------------------------------------------------------------------------------- /src/win32/Srb2win.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/Srb2win.dsp -------------------------------------------------------------------------------- /src/win32/Srb2win.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/Srb2win.dsw -------------------------------------------------------------------------------- /src/win32/Srb2win.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/Srb2win.ico -------------------------------------------------------------------------------- /src/win32/Srb2win.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/Srb2win.props -------------------------------------------------------------------------------- /src/win32/Srb2win.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/Srb2win.rc -------------------------------------------------------------------------------- /src/win32/afxres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/afxres.h -------------------------------------------------------------------------------- /src/win32/dx_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/dx_error.c -------------------------------------------------------------------------------- /src/win32/dx_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/dx_error.h -------------------------------------------------------------------------------- /src/win32/fabdxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/fabdxlib.c -------------------------------------------------------------------------------- /src/win32/fabdxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/fabdxlib.h -------------------------------------------------------------------------------- /src/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/resource.h -------------------------------------------------------------------------------- /src/win32/win_cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_cd.c -------------------------------------------------------------------------------- /src/win32/win_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_dbg.c -------------------------------------------------------------------------------- /src/win32/win_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_dbg.h -------------------------------------------------------------------------------- /src/win32/win_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_dll.c -------------------------------------------------------------------------------- /src/win32/win_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_dll.h -------------------------------------------------------------------------------- /src/win32/win_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_main.c -------------------------------------------------------------------------------- /src/win32/win_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_main.h -------------------------------------------------------------------------------- /src/win32/win_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_net.c -------------------------------------------------------------------------------- /src/win32/win_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_snd.c -------------------------------------------------------------------------------- /src/win32/win_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_sys.c -------------------------------------------------------------------------------- /src/win32/win_vid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/win32/win_vid.c -------------------------------------------------------------------------------- /src/y_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/y_inter.c -------------------------------------------------------------------------------- /src/y_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/y_inter.h -------------------------------------------------------------------------------- /src/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/z_zone.c -------------------------------------------------------------------------------- /src/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/src/z_zone.h -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/IRC_Bot/SmartIRC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/IRC_Bot/SmartIRC.php -------------------------------------------------------------------------------- /tools/MSDfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/MSDfile -------------------------------------------------------------------------------- /tools/PHP/RSS1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/PHP/RSS1.0.php -------------------------------------------------------------------------------- /tools/PHP/RSS92.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/PHP/RSS92.php -------------------------------------------------------------------------------- /tools/PHP/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/PHP/index.php -------------------------------------------------------------------------------- /tools/PHP/text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/PHP/text.php -------------------------------------------------------------------------------- /tools/PHPD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/PHPD -------------------------------------------------------------------------------- /tools/SDL-1.2.14-gc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SDL-1.2.14-gc/README -------------------------------------------------------------------------------- /tools/SOCEdit/Global.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SOCEdit/Global.bas -------------------------------------------------------------------------------- /tools/SOCEdit/SOCEdit.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SOCEdit/SOCEdit.vbp -------------------------------------------------------------------------------- /tools/SOCEdit/Things.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SOCEdit/Things.frm -------------------------------------------------------------------------------- /tools/SOCEdit/Things.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SOCEdit/Things.frx -------------------------------------------------------------------------------- /tools/SOCEdit/frmHelp.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SOCEdit/frmHelp.frm -------------------------------------------------------------------------------- /tools/SOCEdit/frmHelp.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SOCEdit/frmHelp.frx -------------------------------------------------------------------------------- /tools/SOCEdit/frmHub.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SOCEdit/frmHub.frm -------------------------------------------------------------------------------- /tools/SOCEdit/frmHub.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SOCEdit/frmHub.frx -------------------------------------------------------------------------------- /tools/SOCEdit/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SOCEdit/icon1.ico -------------------------------------------------------------------------------- /tools/SRB2Launcher/i_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2Launcher/i_tcp.c -------------------------------------------------------------------------------- /tools/SRB2Launcher/i_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2Launcher/i_tcp.h -------------------------------------------------------------------------------- /tools/SRB2Launcher/mserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2Launcher/mserv.c -------------------------------------------------------------------------------- /tools/SRB2Launcher/mserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2Launcher/mserv.h -------------------------------------------------------------------------------- /tools/SRB2MP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/Makefile -------------------------------------------------------------------------------- /tools/SRB2MP/SRB2MP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/SRB2MP.c -------------------------------------------------------------------------------- /tools/SRB2MP/SRB2MP.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/SRB2MP.dsp -------------------------------------------------------------------------------- /tools/SRB2MP/SRB2MP.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/SRB2MP.dsw -------------------------------------------------------------------------------- /tools/SRB2MP/Script1.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/Script1.aps -------------------------------------------------------------------------------- /tools/SRB2MP/Script1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/Script1.rc -------------------------------------------------------------------------------- /tools/SRB2MP/StdAfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/StdAfx.c -------------------------------------------------------------------------------- /tools/SRB2MP/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/StdAfx.h -------------------------------------------------------------------------------- /tools/SRB2MP/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/icon1.ico -------------------------------------------------------------------------------- /tools/SRB2MP/lump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/lump.c -------------------------------------------------------------------------------- /tools/SRB2MP/lump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/lump.h -------------------------------------------------------------------------------- /tools/SRB2MP/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2MP/resource.h -------------------------------------------------------------------------------- /tools/SRB2Updater/Bunny.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2Updater/Bunny.cs -------------------------------------------------------------------------------- /tools/SRB2Updater/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/SRB2Updater/Debug.cs -------------------------------------------------------------------------------- /tools/anglechk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/anglechk.c -------------------------------------------------------------------------------- /tools/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/convert.c -------------------------------------------------------------------------------- /tools/dircomp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/dircomp2.c -------------------------------------------------------------------------------- /tools/djgpp/all313.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/djgpp/all313.dif -------------------------------------------------------------------------------- /tools/flatb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/flatb/Makefile -------------------------------------------------------------------------------- /tools/flatb/flatb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/flatb/flatb.c -------------------------------------------------------------------------------- /tools/fmoddyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/fmoddyn.h -------------------------------------------------------------------------------- /tools/gdbst03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/gdbst03/Makefile -------------------------------------------------------------------------------- /tools/gdbst03/announce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/gdbst03/announce -------------------------------------------------------------------------------- /tools/gdbst03/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/gdbst03/install -------------------------------------------------------------------------------- /tools/gdbst03/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/gdbst03/license -------------------------------------------------------------------------------- /tools/gdbst03/makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/gdbst03/makefile.cfg -------------------------------------------------------------------------------- /tools/gdbst03/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/gdbst03/readme -------------------------------------------------------------------------------- /tools/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/keys.h -------------------------------------------------------------------------------- /tools/libwad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/libwad/Makefile -------------------------------------------------------------------------------- /tools/libwad/include/wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/libwad/include/wad.h -------------------------------------------------------------------------------- /tools/libwad/src/lump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/libwad/src/lump.c -------------------------------------------------------------------------------- /tools/libwad/src/wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/libwad/src/wad.c -------------------------------------------------------------------------------- /tools/lumpmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/lumpmod/Makefile -------------------------------------------------------------------------------- /tools/lumpmod/lump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/lumpmod/lump.c -------------------------------------------------------------------------------- /tools/lumpmod/lump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/lumpmod/lump.h -------------------------------------------------------------------------------- /tools/lumpmod/lumpmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/lumpmod/lumpmod.c -------------------------------------------------------------------------------- /tools/lumpmod/lumpmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/lumpmod/lumpmod.html -------------------------------------------------------------------------------- /tools/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/makefile -------------------------------------------------------------------------------- /tools/masterserver/ipcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/masterserver/ipcs.h -------------------------------------------------------------------------------- /tools/masterserver/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/masterserver/md5.cpp -------------------------------------------------------------------------------- /tools/masterserver/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/masterserver/md5.h -------------------------------------------------------------------------------- /tools/masterserver/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/masterserver/stats.h -------------------------------------------------------------------------------- /tools/musicdef-2.2.1/Makefile: -------------------------------------------------------------------------------- 1 | musicdef-2.2.1: 2 | -------------------------------------------------------------------------------- /tools/wadconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadconv/Makefile -------------------------------------------------------------------------------- /tools/wadconv/wadconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadconv/wadconv.c -------------------------------------------------------------------------------- /tools/wadzip/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/err.c -------------------------------------------------------------------------------- /tools/wadzip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/err.h -------------------------------------------------------------------------------- /tools/wadzip/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/lzf.h -------------------------------------------------------------------------------- /tools/wadzip/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/lzfP.h -------------------------------------------------------------------------------- /tools/wadzip/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/lzf_c.c -------------------------------------------------------------------------------- /tools/wadzip/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/lzf_d.c -------------------------------------------------------------------------------- /tools/wadzip/wadzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/wadzip.c -------------------------------------------------------------------------------- /tools/wadzip/wadzip.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/wadzip.dsp -------------------------------------------------------------------------------- /tools/wadzip/wadzip.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/wadzip.dsw -------------------------------------------------------------------------------- /tools/wadzip/wadzip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/wadzip.txt -------------------------------------------------------------------------------- /tools/wadzip/xm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/xm.c -------------------------------------------------------------------------------- /tools/wadzip/xm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lactozilla/SRB2/HEAD/tools/wadzip/xm.h --------------------------------------------------------------------------------