├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.common ├── Makefile.griffin ├── Makefile.wii.salamander ├── README.md ├── audio ├── alsa.c ├── alsa_qsa.c ├── alsathread.c ├── audio_thread_wrapper.c ├── audio_thread_wrapper.h ├── coreaudio.c ├── dsound.c ├── dsp_filter.c ├── dsp_filter.h ├── filters │ ├── BassBoost.dsp │ ├── Chorus.dsp │ ├── EQ.dsp │ ├── Echo.dsp │ ├── EchoReverb.dsp │ ├── HighShelfDampen.dsp │ ├── IIR.dsp │ ├── Makefile │ ├── Panning.dsp │ ├── Phaser.dsp │ ├── Reverb.dsp │ ├── WahWah.dsp │ ├── chorus.c │ ├── dspfilter.h │ ├── echo.c │ ├── eq.c │ ├── fft │ │ ├── fft.c │ │ └── fft.h │ ├── iir.c │ ├── link.T │ ├── panning.c │ ├── phaser.c │ ├── reverb.c │ └── wahwah.c ├── gx_audio.c ├── jack.c ├── librsound.c ├── nullaudio.c ├── openal.c ├── opensl.c ├── oss.c ├── ps3_audio.c ├── psp1_audio.c ├── pulse.c ├── resamplers │ ├── cc_resampler.c │ ├── cc_resampler_neon.S │ ├── nearest.c │ ├── resampler.c │ ├── resampler.h │ ├── sinc.c │ └── sinc_neon.S ├── roar.c ├── rsound.c ├── rsound.h ├── rwebaudio.c ├── sdl_audio.c ├── test │ ├── Makefile │ ├── kaiser_window.m │ ├── main.c │ ├── modified_bessel.m │ ├── sinc_test.m │ ├── snr.c │ └── test-rate-control.sh ├── utils.c ├── utils.h ├── utils_neon.S ├── xaudio-c │ ├── xaudio-c.cpp │ ├── xaudio-c.h │ └── xaudio.h ├── xaudio.c └── xenon360_audio.c ├── autosave.c ├── autosave.h ├── cheats.c ├── cheats.h ├── command.c ├── command.h ├── compat └── rxml │ ├── Makefile │ ├── rxml.c │ ├── rxml.h │ └── rxml_test.c ├── config.def.h ├── config.features.h ├── content.c ├── content.h ├── core_info.c ├── core_info.h ├── core_options.c ├── core_options.h ├── debian ├── changelog ├── compat ├── control ├── copyright ├── dirs ├── retroarch.desktop ├── rules └── source │ └── format ├── decompress ├── 7zip_support.c ├── 7zip_support.h ├── zip_support.c └── zip_support.h ├── deps ├── 7zip │ ├── 7z.h │ ├── 7zAlloc.c │ ├── 7zAlloc.h │ ├── 7zBuf.c │ ├── 7zBuf.h │ ├── 7zBuf2.c │ ├── 7zCrc.c │ ├── 7zCrc.h │ ├── 7zCrcOpt.c │ ├── 7zDec.c │ ├── 7zFile.c │ ├── 7zFile.h │ ├── 7zIn.c │ ├── 7zStream.c │ ├── 7zVersion.h │ ├── Bcj2.c │ ├── Bcj2.h │ ├── Bra.c │ ├── Bra.h │ ├── Bra86.c │ ├── CpuArch.c │ ├── CpuArch.h │ ├── Lzma2Dec.c │ ├── Lzma2Dec.h │ ├── LzmaDec.c │ ├── LzmaDec.h │ ├── RotateDefs.h │ └── Types.h └── rzlib │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── deflate.c │ ├── deflate.h │ ├── 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 │ ├── ioapi.c │ ├── ioapi.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── unzip.c │ ├── unzip.h │ ├── zconf.h │ ├── zconf.h.in │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── dist-scripts ├── emscripten-cores.sh ├── ngc-cores.sh ├── ps3-cores-cex-355.sh ├── ps3-cores-cobraode.sh ├── ps3-cores-dex.sh ├── psp1-cores.sh ├── wii-cores.sh ├── xdk1-cores.sh ├── xdk1_env.bat ├── xdk1_env_bigstack.bat ├── xdk360-cores.sh └── xdk360_env.bat ├── docs ├── retroarch-cg2glsl.1 ├── retroarch-joyconfig.1 └── retroarch.1 ├── driver.c ├── driver.h ├── dynamic.c ├── dynamic.h ├── dynamic_dummy.c ├── dynamic_dummy.h ├── fifo_buffer.c ├── fifo_buffer.h ├── file_ext.h ├── file_extract.c ├── file_extract.h ├── file_ops.c ├── file_ops.h ├── frontend ├── frontend.c ├── frontend.h ├── frontend_context.c ├── frontend_context.h ├── frontend_salamander.c ├── frontend_xenon.c ├── menu │ ├── backend │ │ ├── menu_backend.h │ │ ├── menu_common_backend.c │ │ └── menu_lakka_backend.c │ ├── disp │ │ ├── glui.c │ │ ├── lakka.c │ │ ├── lakka.h │ │ ├── menu_display.h │ │ ├── rgui.c │ │ ├── rmenu.c │ │ ├── rmenu_xui.cpp │ │ ├── shared.h │ │ ├── shared_esp.h │ │ └── xmb.c │ ├── menu_action.c │ ├── menu_action.h │ ├── menu_animation.c │ ├── menu_animation.h │ ├── menu_common.c │ ├── menu_common.h │ ├── menu_driver.h │ ├── menu_entries.c │ ├── menu_entries.h │ ├── menu_entries_cbs.c │ ├── menu_entries_cbs.h │ ├── menu_entries_cbs_esp.c │ ├── menu_input_line_cb.c │ ├── menu_input_line_cb.h │ ├── menu_list.c │ ├── menu_list.h │ ├── menu_navigation.c │ ├── menu_navigation.h │ ├── menu_shader.c │ └── menu_shader.h └── platform │ ├── platform_android.c │ ├── platform_android.h │ ├── platform_apple.c │ ├── platform_emscripten.c │ ├── platform_gx.c │ ├── platform_null.c │ ├── platform_ps3.c │ ├── platform_psp.c │ ├── platform_qnx.c │ ├── platform_wii.c │ ├── platform_xdk.c │ └── platform_xdk.h ├── general.c ├── general.h ├── gfx ├── context │ ├── androidegl_ctx.c │ ├── bbqnx_ctx.c │ ├── d3d_ctx.cpp │ ├── drm_egl_ctx.c │ ├── emscriptenegl_ctx.c │ ├── gfx_null_ctx.c │ ├── glx_ctx.c │ ├── mali_fbdev_ctx.c │ ├── null_ctx.c │ ├── ps3_ctx.c │ ├── sdl_gl_ctx.c │ ├── vc_egl_ctx.c │ ├── vivante_fbdev_ctx.c │ ├── wayland_ctx.c │ ├── wgl_ctx.c │ ├── win32_common.c │ ├── win32_common.h │ ├── x11_common.c │ ├── x11_common.h │ └── xegl_ctx.c ├── d3d │ ├── d3d.cpp │ ├── d3d.hpp │ ├── d3d_defines.h │ ├── d3d_wrapper.cpp │ ├── d3d_wrapper.h │ ├── render_chain.cpp │ ├── render_chain.hpp │ ├── render_chain_cg.h │ └── render_chain_xdk.h ├── exynos_gfx.c ├── filter.c ├── filter.h ├── filters │ ├── 2xBR.filt │ ├── 2xSaI.filt │ ├── 2xbr.c │ ├── 2xsai.c │ ├── Blargg_NTSC_SNES_Composite.filt │ ├── Blargg_NTSC_SNES_RF.filt │ ├── Blargg_NTSC_SNES_RGB.filt │ ├── Blargg_NTSC_SNES_S-Video.filt │ ├── Darken.filt │ ├── EPX.filt │ ├── LQ2x.filt │ ├── Makefile │ ├── Normal2x.filt │ ├── Phosphor2x.filt │ ├── Scale2x.filt │ ├── Super2xSaI.filt │ ├── SuperEagle.filt │ ├── blargg_ntsc_snes.c │ ├── darken.c │ ├── epx.c │ ├── link.T │ ├── lq2x.c │ ├── normal2x.c │ ├── phosphor2x.c │ ├── scale2x.c │ ├── snes_ntsc │ │ ├── snes_ntsc.c │ │ ├── snes_ntsc.h │ │ ├── snes_ntsc_config.h │ │ └── snes_ntsc_impl.h │ ├── softfilter.h │ ├── super2xsai.c │ └── supereagle.c ├── fonts │ ├── bitmap.bin │ ├── bitmap.bmp │ ├── bitmap.h │ ├── bitmapfont.c │ ├── coretext.c │ ├── d3d_font.c │ ├── d3d_font.h │ ├── d3d_w32_font.cpp │ ├── fonts.c │ ├── fonts.h │ ├── freetype.c │ ├── gl_font.c │ ├── gl_font.h │ ├── gl_raster_font.c │ ├── ps_libdbgfont.c │ ├── xdk1_xfonts.c │ └── xdk360_fonts.cpp ├── gfx_common.c ├── gfx_common.h ├── gfx_context.c ├── gfx_context.h ├── gl.c ├── gl_common.c ├── gl_common.h ├── gx │ ├── gx_gfx.c │ ├── gx_gfx.h │ ├── ppc_asm.h │ └── sdk_defines.h ├── image │ ├── image.h │ ├── image_ps3.c │ ├── image_rpng.c │ └── image_xdk1.c ├── inc │ └── Cg │ │ ├── cg.h │ │ └── cgGL.h ├── nullgfx.c ├── omap_gfx.c ├── psp │ ├── psp1_gfx.c │ ├── psp1_gfx.h │ └── sdk_defines.h ├── py_state │ ├── py_state.c │ └── py_state.h ├── rpng │ ├── Makefile │ ├── rpng.c │ ├── rpng.h │ └── rpng_test.c ├── sdl2_gfx.c ├── sdl_gfx.c ├── shader │ ├── shader_context.c │ ├── shader_context.h │ ├── shader_gl_cg.c │ ├── shader_glsl.c │ ├── shader_glsl.h │ ├── shader_hlsl.c │ ├── shader_hlsl.h │ ├── shader_null.c │ ├── shader_parse.c │ └── shader_parse.h ├── state_tracker.c ├── state_tracker.h ├── vg.c ├── video_thread_wrapper.c ├── video_thread_wrapper.h ├── xenon360_gfx.c └── xvideo.c ├── git_version.c ├── git_version.h ├── griffin └── griffin.c ├── gx └── ld │ ├── ogc.ld │ └── rvl.ld ├── hash.c ├── hash.h ├── input ├── android_input.c ├── android_input_joypad.c ├── apple_input.c ├── apple_input.h ├── apple_joypad_hid.c ├── apple_joypad_ios.c ├── apple_keycode.h ├── autoconf │ ├── builtin.h │ ├── builtin_gx.c │ ├── builtin_ps3.c │ ├── builtin_psp.c │ ├── builtin_win.c │ └── builtin_xdk.c ├── connect │ ├── connect_ps3.c │ ├── connect_ps4.c │ ├── connect_wii.c │ ├── connect_wii.h │ ├── joypad_connection.c │ └── joypad_connection.h ├── dinput.c ├── ds │ ├── 3ds.c │ ├── 3ds.h │ ├── dummy.txt │ ├── network.c │ ├── network.h │ └── state.h ├── gx_input.c ├── gx_input_joypad.c ├── gx_input_joypad.c-WSWAN ├── gx_input_joypad.c-WSWAN_240p ├── gx_input_sicksaxis.c ├── gx_input_sicksaxis.h ├── input_autodetect.c ├── input_autodetect.h ├── input_common.c ├── input_common.h ├── keyboard_line.c ├── keyboard_line.h ├── linuxraw_input.c ├── linuxraw_joypad.c ├── nullinput.c ├── osk │ ├── nullosk.c │ └── ps3_osk.c ├── overlay.c ├── overlay.h ├── parport_joypad.c ├── ps3_input.c ├── ps3_input_joypad.c ├── psp_input.c ├── psp_input_joypad.c ├── qnx_input.c ├── qnx_input_joypad.c ├── rwebinput_input.c ├── sdl_input.c ├── sdl_joypad.c ├── udev_input.c ├── udev_joypad.c ├── winxinput_joypad.c ├── x11_input.c ├── xdk_xinput_input.c ├── xdk_xinput_input_joypad.c └── xenon360_input.c ├── intl ├── english.h ├── english_esp.h └── intl.h ├── libretro-sdk ├── compat │ ├── compat.c │ └── compat_fnmatch.c ├── file │ ├── config_file.c │ ├── config_file_userdata.c │ ├── dir_list.c │ ├── file_list.c │ └── file_path.c ├── gfx │ ├── math │ │ ├── matrix.c │ │ └── matrix_3x3.c │ └── scaler │ │ ├── pixconv.c │ │ ├── scaler.c │ │ ├── scaler_filter.c │ │ └── scaler_int.c ├── glsym │ ├── README.md │ ├── glgen.py │ ├── glsym_es2.c │ ├── glsym_gl.c │ └── rglgen.c ├── include │ ├── boolean.h │ ├── compat │ │ ├── apple_compat.h │ │ ├── fnmatch.h │ │ ├── getopt.h │ │ ├── msvc.h │ │ ├── posix_string.h │ │ ├── strcasestr.h │ │ └── strl.h │ ├── file │ │ ├── config_file.h │ │ ├── config_file_macros.h │ │ ├── config_file_userdata.h │ │ ├── dir_list.h │ │ ├── file_list.h │ │ └── file_path.h │ ├── gfx │ │ ├── math │ │ │ ├── matrix.h │ │ │ └── matrix_3x3.h │ │ └── scaler │ │ │ ├── filter.h │ │ │ ├── pixconv.h │ │ │ ├── scaler.h │ │ │ ├── scaler_common.h │ │ │ └── scaler_int.h │ ├── glsym │ │ ├── glsym.h │ │ ├── glsym_es2.h │ │ ├── glsym_gl.h │ │ ├── rglgen.h │ │ └── rglgen_headers.h │ ├── libco.h │ ├── retro_endianness.h │ ├── retro_inline.h │ ├── retro_miscellaneous.h │ ├── rthreads │ │ └── rthreads.h │ └── string │ │ └── string_list.h ├── libco │ ├── amd64.c │ ├── armeabi.c │ ├── fiber.c │ ├── libco.c │ ├── ppc.c │ ├── sjlj.c │ ├── ucontext.c │ └── x86.c ├── rthreads │ ├── gx_pthread.h │ ├── psp_pthread.h │ ├── rthreads.c │ └── xenon_sdl_threads.c └── string │ └── string_list.c ├── libretro-test-gl ├── Makefile ├── jni │ ├── Android.mk │ └── Application.mk ├── libretro-test.c └── link.T ├── libretro-test ├── Makefile ├── jni │ ├── Android.mk │ └── Application.mk ├── libretro-test.c └── link.T ├── libretro.h ├── libretro_private.h ├── libretro_version_1.c ├── location ├── android.c └── nulllocation.c ├── logger ├── android_logger_override.h ├── ios_logger_override.h ├── netlogger │ ├── logger.c │ ├── logger.h │ ├── logger_override.h │ └── psl1ght_logger.c ├── salamander_logger_override.h └── xdk1_logger_override.h ├── media ├── 360 │ ├── Arial_12.abc │ ├── Arial_12.rdf │ ├── Arial_12.tga │ ├── hd │ │ └── rarch_main.xui │ ├── rarch.ttf │ ├── rarch_scene_skin.xui │ ├── sd │ │ └── rarch_main.xui │ └── shaders │ │ └── .empty ├── rarch.manifest ├── rarch.rc ├── retroarch-icon.ico ├── retroarch.icns ├── retroarch.png └── retroarch.svg ├── mem └── neon │ └── memcpy-neon.S ├── message_queue.c ├── message_queue.h ├── movie.c ├── movie.h ├── msvc ├── RetroArch-360-Salamander │ ├── RetroArch-Salamander.vcxproj │ └── RetroArch-Salamander.vcxproj.filters ├── RetroArch-360.sln ├── RetroArch-360 │ ├── RetroArch-360.vcxproj │ └── RetroArch-360.vcxproj.filters ├── RetroArch-Xbox1-Salamander │ └── RetroArch-Salamander.vcproj ├── RetroArch-Xbox1.sln ├── RetroArch-Xbox1 │ ├── RetroArch-Xbox1.vcproj │ ├── roms │ │ └── .empty │ ├── screenshots │ │ └── .empty │ └── system │ │ └── .empty ├── RetroArch-msvc2010.sln ├── msvc-2010 │ ├── GL │ │ └── glext.h │ ├── RetroArch-msvc2010.vcxproj │ └── RetroArch-msvc2010.vcxproj.filters └── msvc-stdint │ └── stdint.h ├── netplay.c ├── netplay.h ├── netplay_compat.h ├── ngc ├── pkg │ └── .empty ├── ssaram.c └── ssaram.h ├── patch.c ├── patch.h ├── performance.c ├── performance.h ├── performance ├── performance_android.c └── performance_android.h ├── playlist.c ├── playlist.h ├── qb ├── config.comp.sh ├── config.libs.sh ├── config.params.sh ├── qb.comp.sh ├── qb.libs.sh └── qb.params.sh ├── rarch_compr_file_path.c ├── rarch_compr_file_path.h ├── record ├── ffemu.c ├── ffemu.h └── ffmpeg.c ├── retro.h ├── retroarch.c ├── retroarch.cfg ├── retroarch_logger.h ├── rewind.c ├── rewind.h ├── runloop.c ├── screenshot.c ├── screenshot.h ├── settings.c ├── settings_data.c ├── settings_data.h ├── settings_data_esp.c ├── settings_list.c ├── settings_list.h ├── tests └── test_reentrancy.c ├── tools ├── cg2glsl.py ├── gas-preprocessor.pl └── retroarch-joyconfig.c └── wii ├── app_booter ├── Makefile ├── app_booter.bin ├── crt0.s ├── dolloader.c ├── dolloader.h ├── elf_abi.h ├── elfloader.c ├── elfloader.h ├── link.ld ├── main.c ├── string.c ├── string.h ├── sync.c └── sync.h ├── mem2_manager.c ├── mem2_manager.h ├── pkg ├── boot.dol ├── icon.png └── meta.xml ├── utils ├── playlog.c ├── playlog.h └── tools.h ├── vi_encoder.c └── vi_encoder.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/Makefile.common -------------------------------------------------------------------------------- /Makefile.griffin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/Makefile.griffin -------------------------------------------------------------------------------- /Makefile.wii.salamander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/Makefile.wii.salamander -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/README.md -------------------------------------------------------------------------------- /audio/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/alsa.c -------------------------------------------------------------------------------- /audio/alsa_qsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/alsa_qsa.c -------------------------------------------------------------------------------- /audio/alsathread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/alsathread.c -------------------------------------------------------------------------------- /audio/audio_thread_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/audio_thread_wrapper.c -------------------------------------------------------------------------------- /audio/audio_thread_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/audio_thread_wrapper.h -------------------------------------------------------------------------------- /audio/coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/coreaudio.c -------------------------------------------------------------------------------- /audio/dsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/dsound.c -------------------------------------------------------------------------------- /audio/dsp_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/dsp_filter.c -------------------------------------------------------------------------------- /audio/dsp_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/dsp_filter.h -------------------------------------------------------------------------------- /audio/filters/BassBoost.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/BassBoost.dsp -------------------------------------------------------------------------------- /audio/filters/Chorus.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/Chorus.dsp -------------------------------------------------------------------------------- /audio/filters/EQ.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/EQ.dsp -------------------------------------------------------------------------------- /audio/filters/Echo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/Echo.dsp -------------------------------------------------------------------------------- /audio/filters/EchoReverb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/EchoReverb.dsp -------------------------------------------------------------------------------- /audio/filters/HighShelfDampen.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/HighShelfDampen.dsp -------------------------------------------------------------------------------- /audio/filters/IIR.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/IIR.dsp -------------------------------------------------------------------------------- /audio/filters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/Makefile -------------------------------------------------------------------------------- /audio/filters/Panning.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/Panning.dsp -------------------------------------------------------------------------------- /audio/filters/Phaser.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/Phaser.dsp -------------------------------------------------------------------------------- /audio/filters/Reverb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/Reverb.dsp -------------------------------------------------------------------------------- /audio/filters/WahWah.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/WahWah.dsp -------------------------------------------------------------------------------- /audio/filters/chorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/chorus.c -------------------------------------------------------------------------------- /audio/filters/dspfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/dspfilter.h -------------------------------------------------------------------------------- /audio/filters/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/echo.c -------------------------------------------------------------------------------- /audio/filters/eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/eq.c -------------------------------------------------------------------------------- /audio/filters/fft/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/fft/fft.c -------------------------------------------------------------------------------- /audio/filters/fft/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/fft/fft.h -------------------------------------------------------------------------------- /audio/filters/iir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/iir.c -------------------------------------------------------------------------------- /audio/filters/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/link.T -------------------------------------------------------------------------------- /audio/filters/panning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/panning.c -------------------------------------------------------------------------------- /audio/filters/phaser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/phaser.c -------------------------------------------------------------------------------- /audio/filters/reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/reverb.c -------------------------------------------------------------------------------- /audio/filters/wahwah.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/filters/wahwah.c -------------------------------------------------------------------------------- /audio/gx_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/gx_audio.c -------------------------------------------------------------------------------- /audio/jack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/jack.c -------------------------------------------------------------------------------- /audio/librsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/librsound.c -------------------------------------------------------------------------------- /audio/nullaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/nullaudio.c -------------------------------------------------------------------------------- /audio/openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/openal.c -------------------------------------------------------------------------------- /audio/opensl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/opensl.c -------------------------------------------------------------------------------- /audio/oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/oss.c -------------------------------------------------------------------------------- /audio/ps3_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/ps3_audio.c -------------------------------------------------------------------------------- /audio/psp1_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/psp1_audio.c -------------------------------------------------------------------------------- /audio/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/pulse.c -------------------------------------------------------------------------------- /audio/resamplers/cc_resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/resamplers/cc_resampler.c -------------------------------------------------------------------------------- /audio/resamplers/cc_resampler_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/resamplers/cc_resampler_neon.S -------------------------------------------------------------------------------- /audio/resamplers/nearest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/resamplers/nearest.c -------------------------------------------------------------------------------- /audio/resamplers/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/resamplers/resampler.c -------------------------------------------------------------------------------- /audio/resamplers/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/resamplers/resampler.h -------------------------------------------------------------------------------- /audio/resamplers/sinc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/resamplers/sinc.c -------------------------------------------------------------------------------- /audio/resamplers/sinc_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/resamplers/sinc_neon.S -------------------------------------------------------------------------------- /audio/roar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/roar.c -------------------------------------------------------------------------------- /audio/rsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/rsound.c -------------------------------------------------------------------------------- /audio/rsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/rsound.h -------------------------------------------------------------------------------- /audio/rwebaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/rwebaudio.c -------------------------------------------------------------------------------- /audio/sdl_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/sdl_audio.c -------------------------------------------------------------------------------- /audio/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/test/Makefile -------------------------------------------------------------------------------- /audio/test/kaiser_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/test/kaiser_window.m -------------------------------------------------------------------------------- /audio/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/test/main.c -------------------------------------------------------------------------------- /audio/test/modified_bessel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/test/modified_bessel.m -------------------------------------------------------------------------------- /audio/test/sinc_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/test/sinc_test.m -------------------------------------------------------------------------------- /audio/test/snr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/test/snr.c -------------------------------------------------------------------------------- /audio/test/test-rate-control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/test/test-rate-control.sh -------------------------------------------------------------------------------- /audio/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/utils.c -------------------------------------------------------------------------------- /audio/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/utils.h -------------------------------------------------------------------------------- /audio/utils_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/utils_neon.S -------------------------------------------------------------------------------- /audio/xaudio-c/xaudio-c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/xaudio-c/xaudio-c.cpp -------------------------------------------------------------------------------- /audio/xaudio-c/xaudio-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/xaudio-c/xaudio-c.h -------------------------------------------------------------------------------- /audio/xaudio-c/xaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/xaudio-c/xaudio.h -------------------------------------------------------------------------------- /audio/xaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/xaudio.c -------------------------------------------------------------------------------- /audio/xenon360_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/audio/xenon360_audio.c -------------------------------------------------------------------------------- /autosave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/autosave.c -------------------------------------------------------------------------------- /autosave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/autosave.h -------------------------------------------------------------------------------- /cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/cheats.c -------------------------------------------------------------------------------- /cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/cheats.h -------------------------------------------------------------------------------- /command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/command.c -------------------------------------------------------------------------------- /command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/command.h -------------------------------------------------------------------------------- /compat/rxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/compat/rxml/Makefile -------------------------------------------------------------------------------- /compat/rxml/rxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/compat/rxml/rxml.c -------------------------------------------------------------------------------- /compat/rxml/rxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/compat/rxml/rxml.h -------------------------------------------------------------------------------- /compat/rxml/rxml_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/compat/rxml/rxml_test.c -------------------------------------------------------------------------------- /config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/config.def.h -------------------------------------------------------------------------------- /config.features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/config.features.h -------------------------------------------------------------------------------- /content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/content.c -------------------------------------------------------------------------------- /content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/content.h -------------------------------------------------------------------------------- /core_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/core_info.c -------------------------------------------------------------------------------- /core_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/core_info.h -------------------------------------------------------------------------------- /core_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/core_options.c -------------------------------------------------------------------------------- /core_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/core_options.h -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/debian/dirs -------------------------------------------------------------------------------- /debian/retroarch.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/debian/retroarch.desktop -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /decompress/7zip_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/decompress/7zip_support.c -------------------------------------------------------------------------------- /decompress/7zip_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/decompress/7zip_support.h -------------------------------------------------------------------------------- /decompress/zip_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/decompress/zip_support.c -------------------------------------------------------------------------------- /decompress/zip_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/decompress/zip_support.h -------------------------------------------------------------------------------- /deps/7zip/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7z.h -------------------------------------------------------------------------------- /deps/7zip/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zAlloc.c -------------------------------------------------------------------------------- /deps/7zip/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zAlloc.h -------------------------------------------------------------------------------- /deps/7zip/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zBuf.c -------------------------------------------------------------------------------- /deps/7zip/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zBuf.h -------------------------------------------------------------------------------- /deps/7zip/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zBuf2.c -------------------------------------------------------------------------------- /deps/7zip/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zCrc.c -------------------------------------------------------------------------------- /deps/7zip/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zCrc.h -------------------------------------------------------------------------------- /deps/7zip/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zCrcOpt.c -------------------------------------------------------------------------------- /deps/7zip/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zDec.c -------------------------------------------------------------------------------- /deps/7zip/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zFile.c -------------------------------------------------------------------------------- /deps/7zip/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zFile.h -------------------------------------------------------------------------------- /deps/7zip/7zIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zIn.c -------------------------------------------------------------------------------- /deps/7zip/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zStream.c -------------------------------------------------------------------------------- /deps/7zip/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/7zVersion.h -------------------------------------------------------------------------------- /deps/7zip/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/Bcj2.c -------------------------------------------------------------------------------- /deps/7zip/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/Bcj2.h -------------------------------------------------------------------------------- /deps/7zip/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/Bra.c -------------------------------------------------------------------------------- /deps/7zip/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/Bra.h -------------------------------------------------------------------------------- /deps/7zip/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/Bra86.c -------------------------------------------------------------------------------- /deps/7zip/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/CpuArch.c -------------------------------------------------------------------------------- /deps/7zip/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/CpuArch.h -------------------------------------------------------------------------------- /deps/7zip/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/Lzma2Dec.c -------------------------------------------------------------------------------- /deps/7zip/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/Lzma2Dec.h -------------------------------------------------------------------------------- /deps/7zip/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/LzmaDec.c -------------------------------------------------------------------------------- /deps/7zip/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/LzmaDec.h -------------------------------------------------------------------------------- /deps/7zip/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/RotateDefs.h -------------------------------------------------------------------------------- /deps/7zip/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/7zip/Types.h -------------------------------------------------------------------------------- /deps/rzlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/adler32.c -------------------------------------------------------------------------------- /deps/rzlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/compress.c -------------------------------------------------------------------------------- /deps/rzlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/crc32.c -------------------------------------------------------------------------------- /deps/rzlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/deflate.c -------------------------------------------------------------------------------- /deps/rzlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/deflate.h -------------------------------------------------------------------------------- /deps/rzlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/gzclose.c -------------------------------------------------------------------------------- /deps/rzlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/gzguts.h -------------------------------------------------------------------------------- /deps/rzlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/gzlib.c -------------------------------------------------------------------------------- /deps/rzlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/gzread.c -------------------------------------------------------------------------------- /deps/rzlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/gzwrite.c -------------------------------------------------------------------------------- /deps/rzlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/infback.c -------------------------------------------------------------------------------- /deps/rzlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/inffast.c -------------------------------------------------------------------------------- /deps/rzlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/inffast.h -------------------------------------------------------------------------------- /deps/rzlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/inffixed.h -------------------------------------------------------------------------------- /deps/rzlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/inflate.c -------------------------------------------------------------------------------- /deps/rzlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/inflate.h -------------------------------------------------------------------------------- /deps/rzlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/inftrees.c -------------------------------------------------------------------------------- /deps/rzlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/inftrees.h -------------------------------------------------------------------------------- /deps/rzlib/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/ioapi.c -------------------------------------------------------------------------------- /deps/rzlib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/ioapi.h -------------------------------------------------------------------------------- /deps/rzlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/trees.c -------------------------------------------------------------------------------- /deps/rzlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/trees.h -------------------------------------------------------------------------------- /deps/rzlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/uncompr.c -------------------------------------------------------------------------------- /deps/rzlib/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/unzip.c -------------------------------------------------------------------------------- /deps/rzlib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/unzip.h -------------------------------------------------------------------------------- /deps/rzlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/zconf.h -------------------------------------------------------------------------------- /deps/rzlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/zconf.h.in -------------------------------------------------------------------------------- /deps/rzlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/zlib.h -------------------------------------------------------------------------------- /deps/rzlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/zutil.c -------------------------------------------------------------------------------- /deps/rzlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/deps/rzlib/zutil.h -------------------------------------------------------------------------------- /dist-scripts/emscripten-cores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/emscripten-cores.sh -------------------------------------------------------------------------------- /dist-scripts/ngc-cores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/ngc-cores.sh -------------------------------------------------------------------------------- /dist-scripts/ps3-cores-cex-355.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/ps3-cores-cex-355.sh -------------------------------------------------------------------------------- /dist-scripts/ps3-cores-cobraode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/ps3-cores-cobraode.sh -------------------------------------------------------------------------------- /dist-scripts/ps3-cores-dex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/ps3-cores-dex.sh -------------------------------------------------------------------------------- /dist-scripts/psp1-cores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/psp1-cores.sh -------------------------------------------------------------------------------- /dist-scripts/wii-cores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/wii-cores.sh -------------------------------------------------------------------------------- /dist-scripts/xdk1-cores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/xdk1-cores.sh -------------------------------------------------------------------------------- /dist-scripts/xdk1_env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/xdk1_env.bat -------------------------------------------------------------------------------- /dist-scripts/xdk1_env_bigstack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/xdk1_env_bigstack.bat -------------------------------------------------------------------------------- /dist-scripts/xdk360-cores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/xdk360-cores.sh -------------------------------------------------------------------------------- /dist-scripts/xdk360_env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dist-scripts/xdk360_env.bat -------------------------------------------------------------------------------- /docs/retroarch-cg2glsl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/docs/retroarch-cg2glsl.1 -------------------------------------------------------------------------------- /docs/retroarch-joyconfig.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/docs/retroarch-joyconfig.1 -------------------------------------------------------------------------------- /docs/retroarch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/docs/retroarch.1 -------------------------------------------------------------------------------- /driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/driver.c -------------------------------------------------------------------------------- /driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/driver.h -------------------------------------------------------------------------------- /dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dynamic.c -------------------------------------------------------------------------------- /dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dynamic.h -------------------------------------------------------------------------------- /dynamic_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dynamic_dummy.c -------------------------------------------------------------------------------- /dynamic_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/dynamic_dummy.h -------------------------------------------------------------------------------- /fifo_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/fifo_buffer.c -------------------------------------------------------------------------------- /fifo_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/fifo_buffer.h -------------------------------------------------------------------------------- /file_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/file_ext.h -------------------------------------------------------------------------------- /file_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/file_extract.c -------------------------------------------------------------------------------- /file_extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/file_extract.h -------------------------------------------------------------------------------- /file_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/file_ops.c -------------------------------------------------------------------------------- /file_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/file_ops.h -------------------------------------------------------------------------------- /frontend/frontend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/frontend.c -------------------------------------------------------------------------------- /frontend/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/frontend.h -------------------------------------------------------------------------------- /frontend/frontend_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/frontend_context.c -------------------------------------------------------------------------------- /frontend/frontend_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/frontend_context.h -------------------------------------------------------------------------------- /frontend/frontend_salamander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/frontend_salamander.c -------------------------------------------------------------------------------- /frontend/frontend_xenon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/frontend_xenon.c -------------------------------------------------------------------------------- /frontend/menu/backend/menu_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/backend/menu_backend.h -------------------------------------------------------------------------------- /frontend/menu/backend/menu_common_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/backend/menu_common_backend.c -------------------------------------------------------------------------------- /frontend/menu/backend/menu_lakka_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/backend/menu_lakka_backend.c -------------------------------------------------------------------------------- /frontend/menu/disp/glui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/glui.c -------------------------------------------------------------------------------- /frontend/menu/disp/lakka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/lakka.c -------------------------------------------------------------------------------- /frontend/menu/disp/lakka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/lakka.h -------------------------------------------------------------------------------- /frontend/menu/disp/menu_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/menu_display.h -------------------------------------------------------------------------------- /frontend/menu/disp/rgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/rgui.c -------------------------------------------------------------------------------- /frontend/menu/disp/rmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/rmenu.c -------------------------------------------------------------------------------- /frontend/menu/disp/rmenu_xui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/rmenu_xui.cpp -------------------------------------------------------------------------------- /frontend/menu/disp/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/shared.h -------------------------------------------------------------------------------- /frontend/menu/disp/shared_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/shared_esp.h -------------------------------------------------------------------------------- /frontend/menu/disp/xmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/disp/xmb.c -------------------------------------------------------------------------------- /frontend/menu/menu_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_action.c -------------------------------------------------------------------------------- /frontend/menu/menu_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_action.h -------------------------------------------------------------------------------- /frontend/menu/menu_animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_animation.c -------------------------------------------------------------------------------- /frontend/menu/menu_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_animation.h -------------------------------------------------------------------------------- /frontend/menu/menu_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_common.c -------------------------------------------------------------------------------- /frontend/menu/menu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_common.h -------------------------------------------------------------------------------- /frontend/menu/menu_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_driver.h -------------------------------------------------------------------------------- /frontend/menu/menu_entries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_entries.c -------------------------------------------------------------------------------- /frontend/menu/menu_entries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_entries.h -------------------------------------------------------------------------------- /frontend/menu/menu_entries_cbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_entries_cbs.c -------------------------------------------------------------------------------- /frontend/menu/menu_entries_cbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_entries_cbs.h -------------------------------------------------------------------------------- /frontend/menu/menu_entries_cbs_esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_entries_cbs_esp.c -------------------------------------------------------------------------------- /frontend/menu/menu_input_line_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_input_line_cb.c -------------------------------------------------------------------------------- /frontend/menu/menu_input_line_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_input_line_cb.h -------------------------------------------------------------------------------- /frontend/menu/menu_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_list.c -------------------------------------------------------------------------------- /frontend/menu/menu_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_list.h -------------------------------------------------------------------------------- /frontend/menu/menu_navigation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_navigation.c -------------------------------------------------------------------------------- /frontend/menu/menu_navigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_navigation.h -------------------------------------------------------------------------------- /frontend/menu/menu_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_shader.c -------------------------------------------------------------------------------- /frontend/menu/menu_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/menu/menu_shader.h -------------------------------------------------------------------------------- /frontend/platform/platform_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_android.c -------------------------------------------------------------------------------- /frontend/platform/platform_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_android.h -------------------------------------------------------------------------------- /frontend/platform/platform_apple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_apple.c -------------------------------------------------------------------------------- /frontend/platform/platform_emscripten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_emscripten.c -------------------------------------------------------------------------------- /frontend/platform/platform_gx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_gx.c -------------------------------------------------------------------------------- /frontend/platform/platform_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_null.c -------------------------------------------------------------------------------- /frontend/platform/platform_ps3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_ps3.c -------------------------------------------------------------------------------- /frontend/platform/platform_psp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_psp.c -------------------------------------------------------------------------------- /frontend/platform/platform_qnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_qnx.c -------------------------------------------------------------------------------- /frontend/platform/platform_wii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_wii.c -------------------------------------------------------------------------------- /frontend/platform/platform_xdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_xdk.c -------------------------------------------------------------------------------- /frontend/platform/platform_xdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/frontend/platform/platform_xdk.h -------------------------------------------------------------------------------- /general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/general.c -------------------------------------------------------------------------------- /general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/general.h -------------------------------------------------------------------------------- /gfx/context/androidegl_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/androidegl_ctx.c -------------------------------------------------------------------------------- /gfx/context/bbqnx_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/bbqnx_ctx.c -------------------------------------------------------------------------------- /gfx/context/d3d_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/d3d_ctx.cpp -------------------------------------------------------------------------------- /gfx/context/drm_egl_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/drm_egl_ctx.c -------------------------------------------------------------------------------- /gfx/context/emscriptenegl_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/emscriptenegl_ctx.c -------------------------------------------------------------------------------- /gfx/context/gfx_null_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/gfx_null_ctx.c -------------------------------------------------------------------------------- /gfx/context/glx_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/glx_ctx.c -------------------------------------------------------------------------------- /gfx/context/mali_fbdev_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/mali_fbdev_ctx.c -------------------------------------------------------------------------------- /gfx/context/null_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/null_ctx.c -------------------------------------------------------------------------------- /gfx/context/ps3_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/ps3_ctx.c -------------------------------------------------------------------------------- /gfx/context/sdl_gl_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/sdl_gl_ctx.c -------------------------------------------------------------------------------- /gfx/context/vc_egl_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/vc_egl_ctx.c -------------------------------------------------------------------------------- /gfx/context/vivante_fbdev_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/vivante_fbdev_ctx.c -------------------------------------------------------------------------------- /gfx/context/wayland_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/wayland_ctx.c -------------------------------------------------------------------------------- /gfx/context/wgl_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/wgl_ctx.c -------------------------------------------------------------------------------- /gfx/context/win32_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/win32_common.c -------------------------------------------------------------------------------- /gfx/context/win32_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/win32_common.h -------------------------------------------------------------------------------- /gfx/context/x11_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/x11_common.c -------------------------------------------------------------------------------- /gfx/context/x11_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/x11_common.h -------------------------------------------------------------------------------- /gfx/context/xegl_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/context/xegl_ctx.c -------------------------------------------------------------------------------- /gfx/d3d/d3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/d3d/d3d.cpp -------------------------------------------------------------------------------- /gfx/d3d/d3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/d3d/d3d.hpp -------------------------------------------------------------------------------- /gfx/d3d/d3d_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/d3d/d3d_defines.h -------------------------------------------------------------------------------- /gfx/d3d/d3d_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/d3d/d3d_wrapper.cpp -------------------------------------------------------------------------------- /gfx/d3d/d3d_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/d3d/d3d_wrapper.h -------------------------------------------------------------------------------- /gfx/d3d/render_chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/d3d/render_chain.cpp -------------------------------------------------------------------------------- /gfx/d3d/render_chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/d3d/render_chain.hpp -------------------------------------------------------------------------------- /gfx/d3d/render_chain_cg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/d3d/render_chain_cg.h -------------------------------------------------------------------------------- /gfx/d3d/render_chain_xdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/d3d/render_chain_xdk.h -------------------------------------------------------------------------------- /gfx/exynos_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/exynos_gfx.c -------------------------------------------------------------------------------- /gfx/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filter.c -------------------------------------------------------------------------------- /gfx/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filter.h -------------------------------------------------------------------------------- /gfx/filters/2xBR.filt: -------------------------------------------------------------------------------- 1 | filter = 2xbr 2 | -------------------------------------------------------------------------------- /gfx/filters/2xSaI.filt: -------------------------------------------------------------------------------- 1 | filter = 2xsai 2 | -------------------------------------------------------------------------------- /gfx/filters/2xbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/2xbr.c -------------------------------------------------------------------------------- /gfx/filters/2xsai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/2xsai.c -------------------------------------------------------------------------------- /gfx/filters/Blargg_NTSC_SNES_Composite.filt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/Blargg_NTSC_SNES_Composite.filt -------------------------------------------------------------------------------- /gfx/filters/Blargg_NTSC_SNES_RF.filt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/Blargg_NTSC_SNES_RF.filt -------------------------------------------------------------------------------- /gfx/filters/Blargg_NTSC_SNES_RGB.filt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/Blargg_NTSC_SNES_RGB.filt -------------------------------------------------------------------------------- /gfx/filters/Blargg_NTSC_SNES_S-Video.filt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/Blargg_NTSC_SNES_S-Video.filt -------------------------------------------------------------------------------- /gfx/filters/Darken.filt: -------------------------------------------------------------------------------- 1 | filter = darken 2 | -------------------------------------------------------------------------------- /gfx/filters/EPX.filt: -------------------------------------------------------------------------------- 1 | filter = epx 2 | -------------------------------------------------------------------------------- /gfx/filters/LQ2x.filt: -------------------------------------------------------------------------------- 1 | filter = lq2x 2 | -------------------------------------------------------------------------------- /gfx/filters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/Makefile -------------------------------------------------------------------------------- /gfx/filters/Normal2x.filt: -------------------------------------------------------------------------------- 1 | filter = normal2x 2 | -------------------------------------------------------------------------------- /gfx/filters/Phosphor2x.filt: -------------------------------------------------------------------------------- 1 | filter = phosphor2x 2 | -------------------------------------------------------------------------------- /gfx/filters/Scale2x.filt: -------------------------------------------------------------------------------- 1 | filter = scale2x 2 | -------------------------------------------------------------------------------- /gfx/filters/Super2xSaI.filt: -------------------------------------------------------------------------------- 1 | filter = super2xsai 2 | -------------------------------------------------------------------------------- /gfx/filters/SuperEagle.filt: -------------------------------------------------------------------------------- 1 | filter = supereagle 2 | -------------------------------------------------------------------------------- /gfx/filters/blargg_ntsc_snes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/blargg_ntsc_snes.c -------------------------------------------------------------------------------- /gfx/filters/darken.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/darken.c -------------------------------------------------------------------------------- /gfx/filters/epx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/epx.c -------------------------------------------------------------------------------- /gfx/filters/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/link.T -------------------------------------------------------------------------------- /gfx/filters/lq2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/lq2x.c -------------------------------------------------------------------------------- /gfx/filters/normal2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/normal2x.c -------------------------------------------------------------------------------- /gfx/filters/phosphor2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/phosphor2x.c -------------------------------------------------------------------------------- /gfx/filters/scale2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/scale2x.c -------------------------------------------------------------------------------- /gfx/filters/snes_ntsc/snes_ntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/snes_ntsc/snes_ntsc.c -------------------------------------------------------------------------------- /gfx/filters/snes_ntsc/snes_ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/snes_ntsc/snes_ntsc.h -------------------------------------------------------------------------------- /gfx/filters/snes_ntsc/snes_ntsc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/snes_ntsc/snes_ntsc_config.h -------------------------------------------------------------------------------- /gfx/filters/snes_ntsc/snes_ntsc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/snes_ntsc/snes_ntsc_impl.h -------------------------------------------------------------------------------- /gfx/filters/softfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/softfilter.h -------------------------------------------------------------------------------- /gfx/filters/super2xsai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/super2xsai.c -------------------------------------------------------------------------------- /gfx/filters/supereagle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/filters/supereagle.c -------------------------------------------------------------------------------- /gfx/fonts/bitmap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/bitmap.bin -------------------------------------------------------------------------------- /gfx/fonts/bitmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/bitmap.bmp -------------------------------------------------------------------------------- /gfx/fonts/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/bitmap.h -------------------------------------------------------------------------------- /gfx/fonts/bitmapfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/bitmapfont.c -------------------------------------------------------------------------------- /gfx/fonts/coretext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/coretext.c -------------------------------------------------------------------------------- /gfx/fonts/d3d_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/d3d_font.c -------------------------------------------------------------------------------- /gfx/fonts/d3d_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/d3d_font.h -------------------------------------------------------------------------------- /gfx/fonts/d3d_w32_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/d3d_w32_font.cpp -------------------------------------------------------------------------------- /gfx/fonts/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/fonts.c -------------------------------------------------------------------------------- /gfx/fonts/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/fonts.h -------------------------------------------------------------------------------- /gfx/fonts/freetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/freetype.c -------------------------------------------------------------------------------- /gfx/fonts/gl_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/gl_font.c -------------------------------------------------------------------------------- /gfx/fonts/gl_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/gl_font.h -------------------------------------------------------------------------------- /gfx/fonts/gl_raster_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/gl_raster_font.c -------------------------------------------------------------------------------- /gfx/fonts/ps_libdbgfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/ps_libdbgfont.c -------------------------------------------------------------------------------- /gfx/fonts/xdk1_xfonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/xdk1_xfonts.c -------------------------------------------------------------------------------- /gfx/fonts/xdk360_fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/fonts/xdk360_fonts.cpp -------------------------------------------------------------------------------- /gfx/gfx_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gfx_common.c -------------------------------------------------------------------------------- /gfx/gfx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gfx_common.h -------------------------------------------------------------------------------- /gfx/gfx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gfx_context.c -------------------------------------------------------------------------------- /gfx/gfx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gfx_context.h -------------------------------------------------------------------------------- /gfx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gl.c -------------------------------------------------------------------------------- /gfx/gl_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gl_common.c -------------------------------------------------------------------------------- /gfx/gl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gl_common.h -------------------------------------------------------------------------------- /gfx/gx/gx_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gx/gx_gfx.c -------------------------------------------------------------------------------- /gfx/gx/gx_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gx/gx_gfx.h -------------------------------------------------------------------------------- /gfx/gx/ppc_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gx/ppc_asm.h -------------------------------------------------------------------------------- /gfx/gx/sdk_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/gx/sdk_defines.h -------------------------------------------------------------------------------- /gfx/image/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/image/image.h -------------------------------------------------------------------------------- /gfx/image/image_ps3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/image/image_ps3.c -------------------------------------------------------------------------------- /gfx/image/image_rpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/image/image_rpng.c -------------------------------------------------------------------------------- /gfx/image/image_xdk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/image/image_xdk1.c -------------------------------------------------------------------------------- /gfx/inc/Cg/cg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/inc/Cg/cg.h -------------------------------------------------------------------------------- /gfx/inc/Cg/cgGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/inc/Cg/cgGL.h -------------------------------------------------------------------------------- /gfx/nullgfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/nullgfx.c -------------------------------------------------------------------------------- /gfx/omap_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/omap_gfx.c -------------------------------------------------------------------------------- /gfx/psp/psp1_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/psp/psp1_gfx.c -------------------------------------------------------------------------------- /gfx/psp/psp1_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/psp/psp1_gfx.h -------------------------------------------------------------------------------- /gfx/psp/sdk_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/psp/sdk_defines.h -------------------------------------------------------------------------------- /gfx/py_state/py_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/py_state/py_state.c -------------------------------------------------------------------------------- /gfx/py_state/py_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/py_state/py_state.h -------------------------------------------------------------------------------- /gfx/rpng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/rpng/Makefile -------------------------------------------------------------------------------- /gfx/rpng/rpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/rpng/rpng.c -------------------------------------------------------------------------------- /gfx/rpng/rpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/rpng/rpng.h -------------------------------------------------------------------------------- /gfx/rpng/rpng_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/rpng/rpng_test.c -------------------------------------------------------------------------------- /gfx/sdl2_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/sdl2_gfx.c -------------------------------------------------------------------------------- /gfx/sdl_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/sdl_gfx.c -------------------------------------------------------------------------------- /gfx/shader/shader_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_context.c -------------------------------------------------------------------------------- /gfx/shader/shader_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_context.h -------------------------------------------------------------------------------- /gfx/shader/shader_gl_cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_gl_cg.c -------------------------------------------------------------------------------- /gfx/shader/shader_glsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_glsl.c -------------------------------------------------------------------------------- /gfx/shader/shader_glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_glsl.h -------------------------------------------------------------------------------- /gfx/shader/shader_hlsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_hlsl.c -------------------------------------------------------------------------------- /gfx/shader/shader_hlsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_hlsl.h -------------------------------------------------------------------------------- /gfx/shader/shader_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_null.c -------------------------------------------------------------------------------- /gfx/shader/shader_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_parse.c -------------------------------------------------------------------------------- /gfx/shader/shader_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/shader/shader_parse.h -------------------------------------------------------------------------------- /gfx/state_tracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/state_tracker.c -------------------------------------------------------------------------------- /gfx/state_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/state_tracker.h -------------------------------------------------------------------------------- /gfx/vg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/vg.c -------------------------------------------------------------------------------- /gfx/video_thread_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/video_thread_wrapper.c -------------------------------------------------------------------------------- /gfx/video_thread_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/video_thread_wrapper.h -------------------------------------------------------------------------------- /gfx/xenon360_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/xenon360_gfx.c -------------------------------------------------------------------------------- /gfx/xvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gfx/xvideo.c -------------------------------------------------------------------------------- /git_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/git_version.c -------------------------------------------------------------------------------- /git_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/git_version.h -------------------------------------------------------------------------------- /griffin/griffin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/griffin/griffin.c -------------------------------------------------------------------------------- /gx/ld/ogc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gx/ld/ogc.ld -------------------------------------------------------------------------------- /gx/ld/rvl.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/gx/ld/rvl.ld -------------------------------------------------------------------------------- /hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/hash.c -------------------------------------------------------------------------------- /hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/hash.h -------------------------------------------------------------------------------- /input/android_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/android_input.c -------------------------------------------------------------------------------- /input/android_input_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/android_input_joypad.c -------------------------------------------------------------------------------- /input/apple_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/apple_input.c -------------------------------------------------------------------------------- /input/apple_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/apple_input.h -------------------------------------------------------------------------------- /input/apple_joypad_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/apple_joypad_hid.c -------------------------------------------------------------------------------- /input/apple_joypad_ios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/apple_joypad_ios.c -------------------------------------------------------------------------------- /input/apple_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/apple_keycode.h -------------------------------------------------------------------------------- /input/autoconf/builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/autoconf/builtin.h -------------------------------------------------------------------------------- /input/autoconf/builtin_gx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/autoconf/builtin_gx.c -------------------------------------------------------------------------------- /input/autoconf/builtin_ps3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/autoconf/builtin_ps3.c -------------------------------------------------------------------------------- /input/autoconf/builtin_psp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/autoconf/builtin_psp.c -------------------------------------------------------------------------------- /input/autoconf/builtin_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/autoconf/builtin_win.c -------------------------------------------------------------------------------- /input/autoconf/builtin_xdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/autoconf/builtin_xdk.c -------------------------------------------------------------------------------- /input/connect/connect_ps3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/connect/connect_ps3.c -------------------------------------------------------------------------------- /input/connect/connect_ps4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/connect/connect_ps4.c -------------------------------------------------------------------------------- /input/connect/connect_wii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/connect/connect_wii.c -------------------------------------------------------------------------------- /input/connect/connect_wii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/connect/connect_wii.h -------------------------------------------------------------------------------- /input/connect/joypad_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/connect/joypad_connection.c -------------------------------------------------------------------------------- /input/connect/joypad_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/connect/joypad_connection.h -------------------------------------------------------------------------------- /input/dinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/dinput.c -------------------------------------------------------------------------------- /input/ds/3ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/ds/3ds.c -------------------------------------------------------------------------------- /input/ds/3ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/ds/3ds.h -------------------------------------------------------------------------------- /input/ds/dummy.txt: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /input/ds/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/ds/network.c -------------------------------------------------------------------------------- /input/ds/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/ds/network.h -------------------------------------------------------------------------------- /input/ds/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/ds/state.h -------------------------------------------------------------------------------- /input/gx_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/gx_input.c -------------------------------------------------------------------------------- /input/gx_input_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/gx_input_joypad.c -------------------------------------------------------------------------------- /input/gx_input_joypad.c-WSWAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/gx_input_joypad.c-WSWAN -------------------------------------------------------------------------------- /input/gx_input_joypad.c-WSWAN_240p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/gx_input_joypad.c-WSWAN_240p -------------------------------------------------------------------------------- /input/gx_input_sicksaxis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/gx_input_sicksaxis.c -------------------------------------------------------------------------------- /input/gx_input_sicksaxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/gx_input_sicksaxis.h -------------------------------------------------------------------------------- /input/input_autodetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/input_autodetect.c -------------------------------------------------------------------------------- /input/input_autodetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/input_autodetect.h -------------------------------------------------------------------------------- /input/input_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/input_common.c -------------------------------------------------------------------------------- /input/input_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/input_common.h -------------------------------------------------------------------------------- /input/keyboard_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/keyboard_line.c -------------------------------------------------------------------------------- /input/keyboard_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/keyboard_line.h -------------------------------------------------------------------------------- /input/linuxraw_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/linuxraw_input.c -------------------------------------------------------------------------------- /input/linuxraw_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/linuxraw_joypad.c -------------------------------------------------------------------------------- /input/nullinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/nullinput.c -------------------------------------------------------------------------------- /input/osk/nullosk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/osk/nullosk.c -------------------------------------------------------------------------------- /input/osk/ps3_osk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/osk/ps3_osk.c -------------------------------------------------------------------------------- /input/overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/overlay.c -------------------------------------------------------------------------------- /input/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/overlay.h -------------------------------------------------------------------------------- /input/parport_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/parport_joypad.c -------------------------------------------------------------------------------- /input/ps3_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/ps3_input.c -------------------------------------------------------------------------------- /input/ps3_input_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/ps3_input_joypad.c -------------------------------------------------------------------------------- /input/psp_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/psp_input.c -------------------------------------------------------------------------------- /input/psp_input_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/psp_input_joypad.c -------------------------------------------------------------------------------- /input/qnx_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/qnx_input.c -------------------------------------------------------------------------------- /input/qnx_input_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/qnx_input_joypad.c -------------------------------------------------------------------------------- /input/rwebinput_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/rwebinput_input.c -------------------------------------------------------------------------------- /input/sdl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/sdl_input.c -------------------------------------------------------------------------------- /input/sdl_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/sdl_joypad.c -------------------------------------------------------------------------------- /input/udev_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/udev_input.c -------------------------------------------------------------------------------- /input/udev_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/udev_joypad.c -------------------------------------------------------------------------------- /input/winxinput_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/winxinput_joypad.c -------------------------------------------------------------------------------- /input/x11_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/x11_input.c -------------------------------------------------------------------------------- /input/xdk_xinput_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/xdk_xinput_input.c -------------------------------------------------------------------------------- /input/xdk_xinput_input_joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/xdk_xinput_input_joypad.c -------------------------------------------------------------------------------- /input/xenon360_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/input/xenon360_input.c -------------------------------------------------------------------------------- /intl/english.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/intl/english.h -------------------------------------------------------------------------------- /intl/english_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/intl/english_esp.h -------------------------------------------------------------------------------- /intl/intl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/intl/intl.h -------------------------------------------------------------------------------- /libretro-sdk/compat/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/compat/compat.c -------------------------------------------------------------------------------- /libretro-sdk/compat/compat_fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/compat/compat_fnmatch.c -------------------------------------------------------------------------------- /libretro-sdk/file/config_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/file/config_file.c -------------------------------------------------------------------------------- /libretro-sdk/file/config_file_userdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/file/config_file_userdata.c -------------------------------------------------------------------------------- /libretro-sdk/file/dir_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/file/dir_list.c -------------------------------------------------------------------------------- /libretro-sdk/file/file_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/file/file_list.c -------------------------------------------------------------------------------- /libretro-sdk/file/file_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/file/file_path.c -------------------------------------------------------------------------------- /libretro-sdk/gfx/math/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/gfx/math/matrix.c -------------------------------------------------------------------------------- /libretro-sdk/gfx/math/matrix_3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/gfx/math/matrix_3x3.c -------------------------------------------------------------------------------- /libretro-sdk/gfx/scaler/pixconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/gfx/scaler/pixconv.c -------------------------------------------------------------------------------- /libretro-sdk/gfx/scaler/scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/gfx/scaler/scaler.c -------------------------------------------------------------------------------- /libretro-sdk/gfx/scaler/scaler_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/gfx/scaler/scaler_filter.c -------------------------------------------------------------------------------- /libretro-sdk/gfx/scaler/scaler_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/gfx/scaler/scaler_int.c -------------------------------------------------------------------------------- /libretro-sdk/glsym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/glsym/README.md -------------------------------------------------------------------------------- /libretro-sdk/glsym/glgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/glsym/glgen.py -------------------------------------------------------------------------------- /libretro-sdk/glsym/glsym_es2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/glsym/glsym_es2.c -------------------------------------------------------------------------------- /libretro-sdk/glsym/glsym_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/glsym/glsym_gl.c -------------------------------------------------------------------------------- /libretro-sdk/glsym/rglgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/glsym/rglgen.c -------------------------------------------------------------------------------- /libretro-sdk/include/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/boolean.h -------------------------------------------------------------------------------- /libretro-sdk/include/compat/apple_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/compat/apple_compat.h -------------------------------------------------------------------------------- /libretro-sdk/include/compat/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/compat/fnmatch.h -------------------------------------------------------------------------------- /libretro-sdk/include/compat/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/compat/getopt.h -------------------------------------------------------------------------------- /libretro-sdk/include/compat/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/compat/msvc.h -------------------------------------------------------------------------------- /libretro-sdk/include/compat/posix_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/compat/posix_string.h -------------------------------------------------------------------------------- /libretro-sdk/include/compat/strcasestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/compat/strcasestr.h -------------------------------------------------------------------------------- /libretro-sdk/include/compat/strl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/compat/strl.h -------------------------------------------------------------------------------- /libretro-sdk/include/file/config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/file/config_file.h -------------------------------------------------------------------------------- /libretro-sdk/include/file/config_file_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/file/config_file_macros.h -------------------------------------------------------------------------------- /libretro-sdk/include/file/config_file_userdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/file/config_file_userdata.h -------------------------------------------------------------------------------- /libretro-sdk/include/file/dir_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/file/dir_list.h -------------------------------------------------------------------------------- /libretro-sdk/include/file/file_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/file/file_list.h -------------------------------------------------------------------------------- /libretro-sdk/include/file/file_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/file/file_path.h -------------------------------------------------------------------------------- /libretro-sdk/include/gfx/math/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/gfx/math/matrix.h -------------------------------------------------------------------------------- /libretro-sdk/include/gfx/math/matrix_3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/gfx/math/matrix_3x3.h -------------------------------------------------------------------------------- /libretro-sdk/include/gfx/scaler/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/gfx/scaler/filter.h -------------------------------------------------------------------------------- /libretro-sdk/include/gfx/scaler/pixconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/gfx/scaler/pixconv.h -------------------------------------------------------------------------------- /libretro-sdk/include/gfx/scaler/scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/gfx/scaler/scaler.h -------------------------------------------------------------------------------- /libretro-sdk/include/gfx/scaler/scaler_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/gfx/scaler/scaler_common.h -------------------------------------------------------------------------------- /libretro-sdk/include/gfx/scaler/scaler_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/gfx/scaler/scaler_int.h -------------------------------------------------------------------------------- /libretro-sdk/include/glsym/glsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/glsym/glsym.h -------------------------------------------------------------------------------- /libretro-sdk/include/glsym/glsym_es2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/glsym/glsym_es2.h -------------------------------------------------------------------------------- /libretro-sdk/include/glsym/glsym_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/glsym/glsym_gl.h -------------------------------------------------------------------------------- /libretro-sdk/include/glsym/rglgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/glsym/rglgen.h -------------------------------------------------------------------------------- /libretro-sdk/include/glsym/rglgen_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/glsym/rglgen_headers.h -------------------------------------------------------------------------------- /libretro-sdk/include/libco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/libco.h -------------------------------------------------------------------------------- /libretro-sdk/include/retro_endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/retro_endianness.h -------------------------------------------------------------------------------- /libretro-sdk/include/retro_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/retro_inline.h -------------------------------------------------------------------------------- /libretro-sdk/include/retro_miscellaneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/retro_miscellaneous.h -------------------------------------------------------------------------------- /libretro-sdk/include/rthreads/rthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/rthreads/rthreads.h -------------------------------------------------------------------------------- /libretro-sdk/include/string/string_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/include/string/string_list.h -------------------------------------------------------------------------------- /libretro-sdk/libco/amd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/libco/amd64.c -------------------------------------------------------------------------------- /libretro-sdk/libco/armeabi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/libco/armeabi.c -------------------------------------------------------------------------------- /libretro-sdk/libco/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/libco/fiber.c -------------------------------------------------------------------------------- /libretro-sdk/libco/libco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/libco/libco.c -------------------------------------------------------------------------------- /libretro-sdk/libco/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/libco/ppc.c -------------------------------------------------------------------------------- /libretro-sdk/libco/sjlj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/libco/sjlj.c -------------------------------------------------------------------------------- /libretro-sdk/libco/ucontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/libco/ucontext.c -------------------------------------------------------------------------------- /libretro-sdk/libco/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/libco/x86.c -------------------------------------------------------------------------------- /libretro-sdk/rthreads/gx_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/rthreads/gx_pthread.h -------------------------------------------------------------------------------- /libretro-sdk/rthreads/psp_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/rthreads/psp_pthread.h -------------------------------------------------------------------------------- /libretro-sdk/rthreads/rthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/rthreads/rthreads.c -------------------------------------------------------------------------------- /libretro-sdk/rthreads/xenon_sdl_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/rthreads/xenon_sdl_threads.c -------------------------------------------------------------------------------- /libretro-sdk/string/string_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-sdk/string/string_list.c -------------------------------------------------------------------------------- /libretro-test-gl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-test-gl/Makefile -------------------------------------------------------------------------------- /libretro-test-gl/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-test-gl/jni/Android.mk -------------------------------------------------------------------------------- /libretro-test-gl/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-test-gl/jni/Application.mk -------------------------------------------------------------------------------- /libretro-test-gl/libretro-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-test-gl/libretro-test.c -------------------------------------------------------------------------------- /libretro-test-gl/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-test-gl/link.T -------------------------------------------------------------------------------- /libretro-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-test/Makefile -------------------------------------------------------------------------------- /libretro-test/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-test/jni/Android.mk -------------------------------------------------------------------------------- /libretro-test/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /libretro-test/libretro-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-test/libretro-test.c -------------------------------------------------------------------------------- /libretro-test/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro-test/link.T -------------------------------------------------------------------------------- /libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro.h -------------------------------------------------------------------------------- /libretro_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro_private.h -------------------------------------------------------------------------------- /libretro_version_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/libretro_version_1.c -------------------------------------------------------------------------------- /location/android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/location/android.c -------------------------------------------------------------------------------- /location/nulllocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/location/nulllocation.c -------------------------------------------------------------------------------- /logger/android_logger_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/logger/android_logger_override.h -------------------------------------------------------------------------------- /logger/ios_logger_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/logger/ios_logger_override.h -------------------------------------------------------------------------------- /logger/netlogger/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/logger/netlogger/logger.c -------------------------------------------------------------------------------- /logger/netlogger/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/logger/netlogger/logger.h -------------------------------------------------------------------------------- /logger/netlogger/logger_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/logger/netlogger/logger_override.h -------------------------------------------------------------------------------- /logger/netlogger/psl1ght_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/logger/netlogger/psl1ght_logger.c -------------------------------------------------------------------------------- /logger/salamander_logger_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/logger/salamander_logger_override.h -------------------------------------------------------------------------------- /logger/xdk1_logger_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/logger/xdk1_logger_override.h -------------------------------------------------------------------------------- /media/360/Arial_12.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/360/Arial_12.abc -------------------------------------------------------------------------------- /media/360/Arial_12.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/360/Arial_12.rdf -------------------------------------------------------------------------------- /media/360/Arial_12.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/360/Arial_12.tga -------------------------------------------------------------------------------- /media/360/hd/rarch_main.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/360/hd/rarch_main.xui -------------------------------------------------------------------------------- /media/360/rarch.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/360/rarch.ttf -------------------------------------------------------------------------------- /media/360/rarch_scene_skin.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/360/rarch_scene_skin.xui -------------------------------------------------------------------------------- /media/360/sd/rarch_main.xui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/360/sd/rarch_main.xui -------------------------------------------------------------------------------- /media/360/shaders/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/rarch.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/rarch.manifest -------------------------------------------------------------------------------- /media/rarch.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/rarch.rc -------------------------------------------------------------------------------- /media/retroarch-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/retroarch-icon.ico -------------------------------------------------------------------------------- /media/retroarch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/retroarch.icns -------------------------------------------------------------------------------- /media/retroarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/retroarch.png -------------------------------------------------------------------------------- /media/retroarch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/media/retroarch.svg -------------------------------------------------------------------------------- /mem/neon/memcpy-neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/mem/neon/memcpy-neon.S -------------------------------------------------------------------------------- /message_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/message_queue.c -------------------------------------------------------------------------------- /message_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/message_queue.h -------------------------------------------------------------------------------- /movie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/movie.c -------------------------------------------------------------------------------- /movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/movie.h -------------------------------------------------------------------------------- /msvc/RetroArch-360-Salamander/RetroArch-Salamander.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/RetroArch-360-Salamander/RetroArch-Salamander.vcxproj -------------------------------------------------------------------------------- /msvc/RetroArch-360-Salamander/RetroArch-Salamander.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/RetroArch-360-Salamander/RetroArch-Salamander.vcxproj.filters -------------------------------------------------------------------------------- /msvc/RetroArch-360.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/RetroArch-360.sln -------------------------------------------------------------------------------- /msvc/RetroArch-360/RetroArch-360.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/RetroArch-360/RetroArch-360.vcxproj -------------------------------------------------------------------------------- /msvc/RetroArch-360/RetroArch-360.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/RetroArch-360/RetroArch-360.vcxproj.filters -------------------------------------------------------------------------------- /msvc/RetroArch-Xbox1-Salamander/RetroArch-Salamander.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/RetroArch-Xbox1-Salamander/RetroArch-Salamander.vcproj -------------------------------------------------------------------------------- /msvc/RetroArch-Xbox1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/RetroArch-Xbox1.sln -------------------------------------------------------------------------------- /msvc/RetroArch-Xbox1/RetroArch-Xbox1.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/RetroArch-Xbox1/RetroArch-Xbox1.vcproj -------------------------------------------------------------------------------- /msvc/RetroArch-Xbox1/roms/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msvc/RetroArch-Xbox1/screenshots/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msvc/RetroArch-Xbox1/system/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msvc/RetroArch-msvc2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/RetroArch-msvc2010.sln -------------------------------------------------------------------------------- /msvc/msvc-2010/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/msvc-2010/GL/glext.h -------------------------------------------------------------------------------- /msvc/msvc-2010/RetroArch-msvc2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/msvc-2010/RetroArch-msvc2010.vcxproj -------------------------------------------------------------------------------- /msvc/msvc-2010/RetroArch-msvc2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/msvc-2010/RetroArch-msvc2010.vcxproj.filters -------------------------------------------------------------------------------- /msvc/msvc-stdint/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/msvc/msvc-stdint/stdint.h -------------------------------------------------------------------------------- /netplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/netplay.c -------------------------------------------------------------------------------- /netplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/netplay.h -------------------------------------------------------------------------------- /netplay_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/netplay_compat.h -------------------------------------------------------------------------------- /ngc/pkg/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ngc/ssaram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/ngc/ssaram.c -------------------------------------------------------------------------------- /ngc/ssaram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/ngc/ssaram.h -------------------------------------------------------------------------------- /patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/patch.c -------------------------------------------------------------------------------- /patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/patch.h -------------------------------------------------------------------------------- /performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/performance.c -------------------------------------------------------------------------------- /performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/performance.h -------------------------------------------------------------------------------- /performance/performance_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/performance/performance_android.c -------------------------------------------------------------------------------- /performance/performance_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/performance/performance_android.h -------------------------------------------------------------------------------- /playlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/playlist.c -------------------------------------------------------------------------------- /playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/playlist.h -------------------------------------------------------------------------------- /qb/config.comp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/qb/config.comp.sh -------------------------------------------------------------------------------- /qb/config.libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/qb/config.libs.sh -------------------------------------------------------------------------------- /qb/config.params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/qb/config.params.sh -------------------------------------------------------------------------------- /qb/qb.comp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/qb/qb.comp.sh -------------------------------------------------------------------------------- /qb/qb.libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/qb/qb.libs.sh -------------------------------------------------------------------------------- /qb/qb.params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/qb/qb.params.sh -------------------------------------------------------------------------------- /rarch_compr_file_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/rarch_compr_file_path.c -------------------------------------------------------------------------------- /rarch_compr_file_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/rarch_compr_file_path.h -------------------------------------------------------------------------------- /record/ffemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/record/ffemu.c -------------------------------------------------------------------------------- /record/ffemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/record/ffemu.h -------------------------------------------------------------------------------- /record/ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/record/ffmpeg.c -------------------------------------------------------------------------------- /retro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/retro.h -------------------------------------------------------------------------------- /retroarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/retroarch.c -------------------------------------------------------------------------------- /retroarch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/retroarch.cfg -------------------------------------------------------------------------------- /retroarch_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/retroarch_logger.h -------------------------------------------------------------------------------- /rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/rewind.c -------------------------------------------------------------------------------- /rewind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/rewind.h -------------------------------------------------------------------------------- /runloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/runloop.c -------------------------------------------------------------------------------- /screenshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/screenshot.c -------------------------------------------------------------------------------- /screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/screenshot.h -------------------------------------------------------------------------------- /settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/settings.c -------------------------------------------------------------------------------- /settings_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/settings_data.c -------------------------------------------------------------------------------- /settings_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/settings_data.h -------------------------------------------------------------------------------- /settings_data_esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/settings_data_esp.c -------------------------------------------------------------------------------- /settings_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/settings_list.c -------------------------------------------------------------------------------- /settings_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/settings_list.h -------------------------------------------------------------------------------- /tests/test_reentrancy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/tests/test_reentrancy.c -------------------------------------------------------------------------------- /tools/cg2glsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/tools/cg2glsl.py -------------------------------------------------------------------------------- /tools/gas-preprocessor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/tools/gas-preprocessor.pl -------------------------------------------------------------------------------- /tools/retroarch-joyconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/tools/retroarch-joyconfig.c -------------------------------------------------------------------------------- /wii/app_booter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/Makefile -------------------------------------------------------------------------------- /wii/app_booter/app_booter.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/app_booter.bin -------------------------------------------------------------------------------- /wii/app_booter/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/crt0.s -------------------------------------------------------------------------------- /wii/app_booter/dolloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/dolloader.c -------------------------------------------------------------------------------- /wii/app_booter/dolloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/dolloader.h -------------------------------------------------------------------------------- /wii/app_booter/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/elf_abi.h -------------------------------------------------------------------------------- /wii/app_booter/elfloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/elfloader.c -------------------------------------------------------------------------------- /wii/app_booter/elfloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/elfloader.h -------------------------------------------------------------------------------- /wii/app_booter/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/link.ld -------------------------------------------------------------------------------- /wii/app_booter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/main.c -------------------------------------------------------------------------------- /wii/app_booter/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/string.c -------------------------------------------------------------------------------- /wii/app_booter/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/string.h -------------------------------------------------------------------------------- /wii/app_booter/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/sync.c -------------------------------------------------------------------------------- /wii/app_booter/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/app_booter/sync.h -------------------------------------------------------------------------------- /wii/mem2_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/mem2_manager.c -------------------------------------------------------------------------------- /wii/mem2_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/mem2_manager.h -------------------------------------------------------------------------------- /wii/pkg/boot.dol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/pkg/boot.dol -------------------------------------------------------------------------------- /wii/pkg/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/pkg/icon.png -------------------------------------------------------------------------------- /wii/pkg/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/pkg/meta.xml -------------------------------------------------------------------------------- /wii/utils/playlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/utils/playlog.c -------------------------------------------------------------------------------- /wii/utils/playlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/utils/playlog.h -------------------------------------------------------------------------------- /wii/utils/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/utils/tools.h -------------------------------------------------------------------------------- /wii/vi_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/vi_encoder.c -------------------------------------------------------------------------------- /wii/vi_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperrSonic/RA-SS/HEAD/wii/vi_encoder.h --------------------------------------------------------------------------------