├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── SDL2 ├── BUGS.txt ├── COPYING.txt ├── README-SDL.txt ├── README.txt ├── WhatsNew.txt ├── cmake │ ├── sdl2-config-version.cmake │ └── sdl2-config.cmake ├── docs │ ├── CONTRIBUTING.md │ ├── README-android.md │ ├── README-cmake.md │ ├── README-directfb.md │ ├── README-dynapi.md │ ├── README-emscripten.md │ ├── README-gdk.md │ ├── README-gesture.md │ ├── README-git.md │ ├── README-hg.md │ ├── README-ios.md │ ├── README-kmsbsd.md │ ├── README-linux.md │ ├── README-macos.md │ ├── README-nacl.md │ ├── README-ngage.md │ ├── README-os2.md │ ├── README-pandora.md │ ├── README-platforms.md │ ├── README-porting.md │ ├── README-ps2.md │ ├── README-psp.md │ ├── README-raspberrypi.md │ ├── README-riscos.md │ ├── README-touch.md │ ├── README-versions.md │ ├── README-visualc.md │ ├── README-vita.md │ ├── README-wince.md │ ├── README-windows.md │ ├── README-winrt.md │ ├── README.md │ ├── doxyfile │ └── release_checklist.md ├── include │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h │ ├── SDL_config.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_guid.h │ ├── SDL_haptic.h │ ├── SDL_hidapi.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_locale.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_metal.h │ ├── SDL_misc.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengl_glext.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_opengles2_gl2.h │ ├── SDL_opengles2_gl2ext.h │ ├── SDL_opengles2_gl2platform.h │ ├── SDL_opengles2_khrplatform.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_sensor.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_memory.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── SDL_vulkan.h │ ├── begin_code.h │ └── close_code.h └── lib │ └── x86 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ └── SDL2test.lib ├── sadx-input-mod.sln └── sadx-input-mod ├── DreamPad.cpp ├── DreamPad.h ├── FileExists.cpp ├── FileExists.h ├── KeyboardMouse.cpp ├── KeyboardMouse.h ├── SDL.h ├── Variables_SADX.h ├── configschema.xml ├── input.cpp ├── input.h ├── minmax.h ├── mod.cpp ├── mod.ini ├── rumble.cpp ├── rumble.h ├── sadx-input-mod.vcxproj ├── sadx-input-mod.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── typedefs.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/README.md -------------------------------------------------------------------------------- /SDL2/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/BUGS.txt -------------------------------------------------------------------------------- /SDL2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/COPYING.txt -------------------------------------------------------------------------------- /SDL2/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/README-SDL.txt -------------------------------------------------------------------------------- /SDL2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/README.txt -------------------------------------------------------------------------------- /SDL2/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/WhatsNew.txt -------------------------------------------------------------------------------- /SDL2/cmake/sdl2-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/cmake/sdl2-config-version.cmake -------------------------------------------------------------------------------- /SDL2/cmake/sdl2-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/cmake/sdl2-config.cmake -------------------------------------------------------------------------------- /SDL2/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /SDL2/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-android.md -------------------------------------------------------------------------------- /SDL2/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-cmake.md -------------------------------------------------------------------------------- /SDL2/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-directfb.md -------------------------------------------------------------------------------- /SDL2/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-dynapi.md -------------------------------------------------------------------------------- /SDL2/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-emscripten.md -------------------------------------------------------------------------------- /SDL2/docs/README-gdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-gdk.md -------------------------------------------------------------------------------- /SDL2/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-gesture.md -------------------------------------------------------------------------------- /SDL2/docs/README-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-git.md -------------------------------------------------------------------------------- /SDL2/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-hg.md -------------------------------------------------------------------------------- /SDL2/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-ios.md -------------------------------------------------------------------------------- /SDL2/docs/README-kmsbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-kmsbsd.md -------------------------------------------------------------------------------- /SDL2/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-linux.md -------------------------------------------------------------------------------- /SDL2/docs/README-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-macos.md -------------------------------------------------------------------------------- /SDL2/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-nacl.md -------------------------------------------------------------------------------- /SDL2/docs/README-ngage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-ngage.md -------------------------------------------------------------------------------- /SDL2/docs/README-os2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-os2.md -------------------------------------------------------------------------------- /SDL2/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-pandora.md -------------------------------------------------------------------------------- /SDL2/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-platforms.md -------------------------------------------------------------------------------- /SDL2/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-porting.md -------------------------------------------------------------------------------- /SDL2/docs/README-ps2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-ps2.md -------------------------------------------------------------------------------- /SDL2/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-psp.md -------------------------------------------------------------------------------- /SDL2/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /SDL2/docs/README-riscos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-riscos.md -------------------------------------------------------------------------------- /SDL2/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-touch.md -------------------------------------------------------------------------------- /SDL2/docs/README-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-versions.md -------------------------------------------------------------------------------- /SDL2/docs/README-visualc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-visualc.md -------------------------------------------------------------------------------- /SDL2/docs/README-vita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-vita.md -------------------------------------------------------------------------------- /SDL2/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-wince.md -------------------------------------------------------------------------------- /SDL2/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-windows.md -------------------------------------------------------------------------------- /SDL2/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README-winrt.md -------------------------------------------------------------------------------- /SDL2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/README.md -------------------------------------------------------------------------------- /SDL2/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/doxyfile -------------------------------------------------------------------------------- /SDL2/docs/release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/docs/release_checklist.md -------------------------------------------------------------------------------- /SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL.h -------------------------------------------------------------------------------- /SDL2/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_assert.h -------------------------------------------------------------------------------- /SDL2/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_atomic.h -------------------------------------------------------------------------------- /SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /SDL2/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_blendmode.h -------------------------------------------------------------------------------- /SDL2/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_clipboard.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /SDL2/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config.h.in -------------------------------------------------------------------------------- /SDL2/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_android.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config_macosx.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_macosx.h.orig -------------------------------------------------------------------------------- /SDL2/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_psp.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_windows.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /SDL2/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /SDL2/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_copying.h -------------------------------------------------------------------------------- /SDL2/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /SDL2/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_endian.h -------------------------------------------------------------------------------- /SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /SDL2/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_events.h -------------------------------------------------------------------------------- /SDL2/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_filesystem.h -------------------------------------------------------------------------------- /SDL2/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /SDL2/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_gesture.h -------------------------------------------------------------------------------- /SDL2/include/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_guid.h -------------------------------------------------------------------------------- /SDL2/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_haptic.h -------------------------------------------------------------------------------- /SDL2/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_hidapi.h -------------------------------------------------------------------------------- /SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /SDL2/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_joystick.h -------------------------------------------------------------------------------- /SDL2/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_keyboard.h -------------------------------------------------------------------------------- /SDL2/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_keycode.h -------------------------------------------------------------------------------- /SDL2/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_loadso.h -------------------------------------------------------------------------------- /SDL2/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_locale.h -------------------------------------------------------------------------------- /SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /SDL2/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_messagebox.h -------------------------------------------------------------------------------- /SDL2/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_metal.h -------------------------------------------------------------------------------- /SDL2/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_misc.h -------------------------------------------------------------------------------- /SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /SDL2/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_opengl.h -------------------------------------------------------------------------------- /SDL2/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /SDL2/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_opengles.h -------------------------------------------------------------------------------- /SDL2/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_opengles2.h -------------------------------------------------------------------------------- /SDL2/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /SDL2/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /SDL2/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /SDL2/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /SDL2/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_pixels.h -------------------------------------------------------------------------------- /SDL2/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_platform.h -------------------------------------------------------------------------------- /SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /SDL2/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_render.h -------------------------------------------------------------------------------- /SDL2/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_revision.h -------------------------------------------------------------------------------- /SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /SDL2/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_scancode.h -------------------------------------------------------------------------------- /SDL2/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_sensor.h -------------------------------------------------------------------------------- /SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /SDL2/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_stdinc.h -------------------------------------------------------------------------------- /SDL2/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_surface.h -------------------------------------------------------------------------------- /SDL2/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_system.h -------------------------------------------------------------------------------- /SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_assert.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_common.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_compare.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_font.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_harness.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_images.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_log.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_md5.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_memory.h -------------------------------------------------------------------------------- /SDL2/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_test_random.h -------------------------------------------------------------------------------- /SDL2/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_thread.h -------------------------------------------------------------------------------- /SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /SDL2/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_version.h -------------------------------------------------------------------------------- /SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /SDL2/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/SDL_vulkan.h -------------------------------------------------------------------------------- /SDL2/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/begin_code.h -------------------------------------------------------------------------------- /SDL2/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/include/close_code.h -------------------------------------------------------------------------------- /SDL2/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /SDL2/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /SDL2/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /SDL2/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/SDL2/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /sadx-input-mod.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod.sln -------------------------------------------------------------------------------- /sadx-input-mod/DreamPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/DreamPad.cpp -------------------------------------------------------------------------------- /sadx-input-mod/DreamPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/DreamPad.h -------------------------------------------------------------------------------- /sadx-input-mod/FileExists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/FileExists.cpp -------------------------------------------------------------------------------- /sadx-input-mod/FileExists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/FileExists.h -------------------------------------------------------------------------------- /sadx-input-mod/KeyboardMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/KeyboardMouse.cpp -------------------------------------------------------------------------------- /sadx-input-mod/KeyboardMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/KeyboardMouse.h -------------------------------------------------------------------------------- /sadx-input-mod/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/SDL.h -------------------------------------------------------------------------------- /sadx-input-mod/Variables_SADX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/Variables_SADX.h -------------------------------------------------------------------------------- /sadx-input-mod/configschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/configschema.xml -------------------------------------------------------------------------------- /sadx-input-mod/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/input.cpp -------------------------------------------------------------------------------- /sadx-input-mod/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/input.h -------------------------------------------------------------------------------- /sadx-input-mod/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/minmax.h -------------------------------------------------------------------------------- /sadx-input-mod/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/mod.cpp -------------------------------------------------------------------------------- /sadx-input-mod/mod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/mod.ini -------------------------------------------------------------------------------- /sadx-input-mod/rumble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/rumble.cpp -------------------------------------------------------------------------------- /sadx-input-mod/rumble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/rumble.h -------------------------------------------------------------------------------- /sadx-input-mod/sadx-input-mod.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/sadx-input-mod.vcxproj -------------------------------------------------------------------------------- /sadx-input-mod/sadx-input-mod.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/sadx-input-mod.vcxproj.filters -------------------------------------------------------------------------------- /sadx-input-mod/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /sadx-input-mod/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/stdafx.h -------------------------------------------------------------------------------- /sadx-input-mod/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-fadely/sadx-input-mod/HEAD/sadx-input-mod/typedefs.h --------------------------------------------------------------------------------