├── .gitignore ├── CMake ├── Packages │ ├── FindFreeImage.cmake │ ├── FindIntl.cmake │ ├── FindOpenGLES.cmake │ ├── FindOpenGLES2.cmake │ ├── FindPackageHandleStandardArgs.cmake │ ├── FindPackageMessage.cmake │ ├── FindRapidJSON.cmake │ ├── FindSDL2.cmake │ ├── FindSDL2MIXER.cmake │ ├── FindVLC.cmake │ ├── FindlibCEC.cmake │ └── MacroEnsureVersion.cmake └── Utils │ └── FindPkgMacros.cmake ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── DEVNOTES.md ├── GAMELISTS.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── SYSTEMS.md ├── THEMES.md ├── emulationstation.sh ├── es-app ├── CMakeLists.txt └── src │ ├── ApiSystem.cpp │ ├── ApiSystem.h │ ├── CollectionSystemManager.cpp │ ├── CollectionSystemManager.h │ ├── ContentInstaller.cpp │ ├── ContentInstaller.h │ ├── EmulationStation.aps │ ├── EmulationStation.h │ ├── EmulationStation.rc │ ├── FileData.cpp │ ├── FileData.h │ ├── FileFilterIndex.cpp │ ├── FileFilterIndex.h │ ├── FileSorts.cpp │ ├── FileSorts.h │ ├── Gamelist.cpp │ ├── Gamelist.h │ ├── Genres.cpp │ ├── Genres.h │ ├── KeyboardMapping.cpp │ ├── KeyboardMapping.h │ ├── LangParser.cpp │ ├── LangParser.h │ ├── LibretroRatio.cpp │ ├── LibretroRatio.h │ ├── MetaData.cpp │ ├── MetaData.h │ ├── NetworkThread.cpp │ ├── NetworkThread.h │ ├── PlatformId.cpp │ ├── PlatformId.h │ ├── Playlists.cpp │ ├── Playlists.h │ ├── RetroAchievements.cpp │ ├── RetroAchievements.h │ ├── SaveState.cpp │ ├── SaveState.h │ ├── SaveStateRepository.cpp │ ├── SaveStateRepository.h │ ├── ScraperCmdLine.cpp │ ├── ScraperCmdLine.h │ ├── SystemData.cpp │ ├── SystemData.h │ ├── SystemScreenSaver.cpp │ ├── SystemScreenSaver.h │ ├── ThreadedBluetooth.cpp │ ├── ThreadedBluetooth.h │ ├── ThreadedHasher.cpp │ ├── ThreadedHasher.h │ ├── Win32ApiSystem.cpp │ ├── Win32ApiSystem.h │ ├── animations │ ├── LaunchAnimation.h │ └── MoveCameraAnimation.h │ ├── components │ ├── AsyncReqComponent.cpp │ ├── AsyncReqComponent.h │ ├── CarouselComponent.cpp │ ├── CarouselComponent.h │ ├── RatingComponent.cpp │ ├── RatingComponent.h │ ├── ScraperSearchComponent.cpp │ ├── ScraperSearchComponent.h │ └── TextListComponent.h │ ├── es_icon.ico │ ├── guis │ ├── GuiAutoScrape.cpp │ ├── GuiAutoScrape.h │ ├── GuiBackup.cpp │ ├── GuiBackup.h │ ├── GuiBackupStart.cpp │ ├── GuiBackupStart.h │ ├── GuiBatoceraStore.cpp │ ├── GuiBatoceraStore.h │ ├── GuiBezelInstaller.cpp │ ├── GuiBezelInstaller.h │ ├── GuiBios.cpp │ ├── GuiBios.h │ ├── GuiBluetooth.cpp │ ├── GuiBluetooth.h │ ├── GuiCollectionSystemsOptions.cpp │ ├── GuiCollectionSystemsOptions.h │ ├── GuiDecorationOptions.cpp │ ├── GuiDecorationOptions.h │ ├── GuiFileBrowser.cpp │ ├── GuiFileBrowser.h │ ├── GuiGameAchievements.cpp │ ├── GuiGameAchievements.h │ ├── GuiGameOptions.cpp │ ├── GuiGameOptions.h │ ├── GuiGameScraper.cpp │ ├── GuiGameScraper.h │ ├── GuiGamelistFilter.cpp │ ├── GuiGamelistFilter.h │ ├── GuiGamelistOptions.cpp │ ├── GuiGamelistOptions.h │ ├── GuiGeneralScreensaverOptions.cpp │ ├── GuiGeneralScreensaverOptions.h │ ├── GuiHashStart.cpp │ ├── GuiHashStart.h │ ├── GuiImageViewer.cpp │ ├── GuiImageViewer.h │ ├── GuiInstall.cpp │ ├── GuiInstall.h │ ├── GuiInstallStart.cpp │ ├── GuiInstallStart.h │ ├── GuiKeyMappingEditor.cpp │ ├── GuiKeyMappingEditor.h │ ├── GuiKeyboardLayout.cpp │ ├── GuiKeyboardLayout.h │ ├── GuiLoading.h │ ├── GuiMenu.cpp │ ├── GuiMenu.h │ ├── GuiMetaDataEd.cpp │ ├── GuiMetaDataEd.h │ ├── GuiMoonlight.cpp │ ├── GuiMoonlight.h │ ├── GuiNetPlay.cpp │ ├── GuiNetPlay.h │ ├── GuiPackageInstaller.cpp │ ├── GuiPackageInstaller.h │ ├── GuiRetroAchievements.cpp │ ├── GuiRetroAchievements.h │ ├── GuiSaveState.cpp │ ├── GuiSaveState.h │ ├── GuiScraperStart.cpp │ ├── GuiScraperStart.h │ ├── GuiSettings.cpp │ ├── GuiSettings.h │ ├── GuiThemeInstaller.cpp │ ├── GuiThemeInstaller.h │ ├── GuiUpdate.cpp │ ├── GuiUpdate.h │ ├── GuiWifi.cpp │ └── GuiWifi.h │ ├── main.cpp │ ├── scrapers │ ├── ArcadeDBJSONScraper.cpp │ ├── ArcadeDBJSONScraper.h │ ├── GamesDBJSONScraper.cpp │ ├── GamesDBJSONScraper.h │ ├── GamesDBJSONScraperResources.cpp │ ├── GamesDBJSONScraperResources.h │ ├── HfsDBScraper.cpp │ ├── HfsDBScraper.h │ ├── Scraper.cpp │ ├── Scraper.h │ ├── ScreenScraper.cpp │ ├── ScreenScraper.h │ ├── ThreadedScraper.cpp │ └── ThreadedScraper.h │ ├── services │ ├── HttpApi.cpp │ ├── HttpApi.h │ ├── HttpServerThread.cpp │ ├── HttpServerThread.h │ └── httplib.h │ └── views │ ├── SystemView.cpp │ ├── SystemView.h │ ├── UIModeController.cpp │ ├── UIModeController.h │ ├── ViewController.cpp │ ├── ViewController.h │ └── gamelist │ ├── BasicGameListView.cpp │ ├── BasicGameListView.h │ ├── CarouselGameListView.cpp │ ├── CarouselGameListView.h │ ├── DetailedContainer.cpp │ ├── DetailedContainer.h │ ├── DetailedGameListView.cpp │ ├── DetailedGameListView.h │ ├── GameNameFormatter.cpp │ ├── GameNameFormatter.h │ ├── GridGameListView.cpp │ ├── GridGameListView.h │ ├── IGameListView.cpp │ ├── IGameListView.h │ ├── ISimpleGameListView.cpp │ ├── ISimpleGameListView.h │ ├── VideoGameListView.cpp │ └── VideoGameListView.h ├── es-core ├── CMakeLists.txt └── src │ ├── AsyncHandle.h │ ├── AudioManager.cpp │ ├── AudioManager.h │ ├── BrightnessControl.cpp │ ├── BrightnessControl.h │ ├── CECInput.cpp │ ├── CECInput.h │ ├── GuiComponent.cpp │ ├── GuiComponent.h │ ├── HelpPrompt.h │ ├── HelpStyle.cpp │ ├── HelpStyle.h │ ├── HttpReq.cpp │ ├── HttpReq.h │ ├── ImageIO.cpp │ ├── ImageIO.h │ ├── InputConfig.cpp │ ├── InputConfig.h │ ├── InputManager.cpp │ ├── InputManager.h │ ├── LocaleES.cpp │ ├── LocaleES.h │ ├── Log.cpp │ ├── Log.h │ ├── MameNames.cpp │ ├── MameNames.h │ ├── MultiStateInput.cpp │ ├── MultiStateInput.h │ ├── PowerSaver.cpp │ ├── PowerSaver.h │ ├── Scripting.cpp │ ├── Scripting.h │ ├── Settings.cpp │ ├── Settings.h │ ├── Sound.cpp │ ├── Sound.h │ ├── Splash.cpp │ ├── Splash.h │ ├── SystemConf.cpp │ ├── SystemConf.h │ ├── TextToSpeech.cpp │ ├── TextToSpeech.h │ ├── ThemeData.cpp │ ├── ThemeData.h │ ├── VolumeControl.cpp │ ├── VolumeControl.h │ ├── Window.cpp │ ├── Window.h │ ├── anim │ ├── StoryboardAnimator.cpp │ ├── StoryboardAnimator.h │ ├── ThemeAnimation.h │ ├── ThemeStoryboard.cpp │ └── ThemeStoryboard.h │ ├── animations │ ├── Animation.h │ ├── AnimationController.cpp │ ├── AnimationController.h │ └── LambdaAnimation.h │ ├── components │ ├── AnimatedImageComponent.cpp │ ├── AnimatedImageComponent.h │ ├── AsyncNotificationComponent.cpp │ ├── AsyncNotificationComponent.h │ ├── BatteryIndicatorComponent.cpp │ ├── BatteryIndicatorComponent.h │ ├── BusyComponent.cpp │ ├── BusyComponent.h │ ├── ButtonComponent.cpp │ ├── ButtonComponent.h │ ├── ComponentGrid.cpp │ ├── ComponentGrid.h │ ├── ComponentList.cpp │ ├── ComponentList.h │ ├── ComponentTab.cpp │ ├── ComponentTab.h │ ├── ControllerActivityComponent.cpp │ ├── ControllerActivityComponent.h │ ├── DateTimeComponent.cpp │ ├── DateTimeComponent.h │ ├── DateTimeEditComponent.cpp │ ├── DateTimeEditComponent.h │ ├── GridTileComponent.cpp │ ├── GridTileComponent.h │ ├── HelpComponent.cpp │ ├── HelpComponent.h │ ├── IList.h │ ├── ImageComponent.cpp │ ├── ImageComponent.h │ ├── ImageGridComponent.h │ ├── MenuComponent.cpp │ ├── MenuComponent.h │ ├── MultiLineMenuEntry.cpp │ ├── MultiLineMenuEntry.h │ ├── NinePatchComponent.cpp │ ├── NinePatchComponent.h │ ├── OptionListComponent.h │ ├── ScrollableContainer.cpp │ ├── ScrollableContainer.h │ ├── ScrollbarComponent.cpp │ ├── ScrollbarComponent.h │ ├── SliderComponent.cpp │ ├── SliderComponent.h │ ├── SwitchComponent.cpp │ ├── SwitchComponent.h │ ├── TextComponent.cpp │ ├── TextComponent.h │ ├── TextEditComponent.cpp │ ├── TextEditComponent.h │ ├── VideoComponent.cpp │ ├── VideoComponent.h │ ├── VideoPlayerComponent.cpp │ ├── VideoPlayerComponent.h │ ├── VideoVlcComponent.cpp │ ├── VideoVlcComponent.h │ ├── VolumeInfoComponent.cpp │ ├── VolumeInfoComponent.h │ ├── WebImageComponent.cpp │ └── WebImageComponent.h │ ├── guis │ ├── GuiDetectDevice.cpp │ ├── GuiDetectDevice.h │ ├── GuiInfoPopup.cpp │ ├── GuiInfoPopup.h │ ├── GuiInputConfig.cpp │ ├── GuiInputConfig.h │ ├── GuiMsgBox.cpp │ ├── GuiMsgBox.h │ ├── GuiTextEditPopup.cpp │ ├── GuiTextEditPopup.h │ ├── GuiTextEditPopupKeyboard.cpp │ └── GuiTextEditPopupKeyboard.h │ ├── math │ ├── Misc.cpp │ ├── Misc.h │ ├── Transform4x4f.cpp │ ├── Transform4x4f.h │ ├── Vector2f.cpp │ ├── Vector2f.h │ ├── Vector2i.cpp │ ├── Vector2i.h │ ├── Vector3f.cpp │ ├── Vector3f.h │ ├── Vector4f.cpp │ └── Vector4f.h │ ├── platform.cpp │ ├── platform.h │ ├── renderers │ ├── GlExtensions.cpp │ ├── GlExtensions.h │ ├── Renderer.cpp │ ├── Renderer.h │ ├── Renderer_GL21.cpp │ ├── Renderer_GL21.h │ ├── Renderer_GLES10.cpp │ ├── Renderer_GLES10.h │ ├── Renderer_GLES20.cpp │ ├── Renderer_GLES20.h │ ├── Shader.cpp │ └── Shader.h │ ├── resources │ ├── Font.cpp │ ├── Font.h │ ├── ResourceManager.cpp │ ├── ResourceManager.h │ ├── TextureData.cpp │ ├── TextureData.h │ ├── TextureDataManager.cpp │ ├── TextureDataManager.h │ ├── TextureResource.cpp │ └── TextureResource.h │ └── utils │ ├── Delegate.h │ ├── FileSystemUtil.cpp │ ├── FileSystemUtil.h │ ├── Randomizer.cpp │ ├── Randomizer.h │ ├── StringUtil.cpp │ ├── StringUtil.h │ ├── ThreadPool.cpp │ ├── ThreadPool.h │ ├── TimeUtil.cpp │ ├── TimeUtil.h │ ├── ZipFile.cpp │ ├── ZipFile.h │ ├── han.h │ ├── md5.cpp │ ├── md5.h │ └── zip_file.hpp ├── external ├── CMakeLists.txt ├── id3v2lib │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ ├── id3v2lib.h │ │ └── id3v2lib │ │ │ ├── constants.h │ │ │ ├── frame.h │ │ │ ├── header.h │ │ │ ├── types.h │ │ │ └── utils.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── frame.c │ │ ├── header.c │ │ ├── id3v2lib.c │ │ ├── types.c │ │ └── utils.c ├── libcheevos │ ├── CMakeLists.txt │ ├── cheevos.cpp │ ├── cheevos.h │ ├── libretro-common │ │ ├── include │ │ │ ├── array │ │ │ │ ├── rbuf.h │ │ │ │ └── rhmap.h │ │ │ ├── boolean.h │ │ │ ├── cdrom │ │ │ │ └── cdrom.h │ │ │ ├── compat │ │ │ │ ├── apple_compat.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── fopen_utf8.h │ │ │ │ ├── getopt.h │ │ │ │ ├── ifaddrs.h │ │ │ │ ├── intrinsics.h │ │ │ │ ├── msvc.h │ │ │ │ ├── msvc │ │ │ │ │ └── stdint.h │ │ │ │ ├── posix_string.h │ │ │ │ ├── strcasestr.h │ │ │ │ ├── strl.h │ │ │ │ └── zlib │ │ │ │ │ ├── zconf.h │ │ │ │ │ └── zlib.h │ │ │ ├── dr_libs │ │ │ │ └── dr_flac.h │ │ │ ├── encodings │ │ │ │ ├── crc32.h │ │ │ │ └── utf.h │ │ │ ├── file │ │ │ │ └── file_path.h │ │ │ ├── formats │ │ │ │ ├── cdfs.h │ │ │ │ └── m3u_file.h │ │ │ ├── libchdr │ │ │ │ ├── bitstream.h │ │ │ │ ├── cdrom.h │ │ │ │ ├── chd.h │ │ │ │ ├── chdconfig.h │ │ │ │ ├── coretypes.h │ │ │ │ ├── flac.h │ │ │ │ └── huffman.h │ │ │ ├── libretro.h │ │ │ ├── lists │ │ │ │ ├── dir_list.h │ │ │ │ └── string_list.h │ │ │ ├── lrc_hash.h │ │ │ ├── memalign.h │ │ │ ├── memmap.h │ │ │ ├── retro_assert.h │ │ │ ├── retro_common.h │ │ │ ├── retro_common_api.h │ │ │ ├── retro_dirent.h │ │ │ ├── retro_endianness.h │ │ │ ├── retro_environment.h │ │ │ ├── retro_inline.h │ │ │ ├── retro_math.h │ │ │ ├── retro_miscellaneous.h │ │ │ ├── retro_timers.h │ │ │ ├── streams │ │ │ │ ├── chd_stream.h │ │ │ │ ├── file_stream.h │ │ │ │ ├── file_stream_transforms.h │ │ │ │ ├── interface_stream.h │ │ │ │ ├── memory_stream.h │ │ │ │ ├── rzip_stream.h │ │ │ │ ├── stdin_stream.h │ │ │ │ └── trans_stream.h │ │ │ ├── string │ │ │ │ └── stdstring.h │ │ │ ├── time │ │ │ │ └── rtime.h │ │ │ ├── vfs │ │ │ │ ├── vfs.h │ │ │ │ ├── vfs_implementation.h │ │ │ │ └── vfs_implementation_cdrom.h │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ └── src │ │ │ ├── 7zip │ │ │ ├── 7z.h │ │ │ ├── 7zArcIn.c │ │ │ ├── 7zBuf.c │ │ │ ├── 7zBuf.h │ │ │ ├── 7zCrc.c │ │ │ ├── 7zCrc.h │ │ │ ├── 7zCrcOpt.c │ │ │ ├── 7zDec.c │ │ │ ├── 7zFile.c │ │ │ ├── 7zFile.h │ │ │ ├── 7zStream.c │ │ │ ├── 7zTypes.h │ │ │ ├── 7zVersion.h │ │ │ ├── Bcj2.c │ │ │ ├── Bcj2.h │ │ │ ├── Bra.c │ │ │ ├── Bra.h │ │ │ ├── Bra86.c │ │ │ ├── BraIA64.c │ │ │ ├── Compiler.h │ │ │ ├── CpuArch.c │ │ │ ├── CpuArch.h │ │ │ ├── Delta.c │ │ │ ├── Delta.h │ │ │ ├── LzFind.c │ │ │ ├── LzFind.h │ │ │ ├── LzHash.h │ │ │ ├── Lzma2Dec.c │ │ │ ├── Lzma2Dec.h │ │ │ ├── LzmaDec.c │ │ │ ├── LzmaDec.h │ │ │ ├── LzmaEnc.c │ │ │ ├── LzmaEnc.h │ │ │ └── Precomp.h │ │ │ ├── cdrom │ │ │ └── cdrom.c │ │ │ ├── compat │ │ │ ├── compat_fnmatch.c │ │ │ ├── compat_getopt.c │ │ │ ├── compat_ifaddrs.c │ │ │ ├── compat_posix_string.c │ │ │ ├── compat_snprintf.c │ │ │ ├── compat_strcasestr.c │ │ │ ├── compat_strl.c │ │ │ ├── compat_vscprintf.c │ │ │ └── fopen_utf8.c │ │ │ ├── encodings │ │ │ ├── encoding_crc32.c │ │ │ └── encoding_utf.c │ │ │ ├── file │ │ │ ├── file_path.c │ │ │ ├── file_path_io.c │ │ │ └── retro_dirent.c │ │ │ ├── formats │ │ │ ├── cdfs │ │ │ │ └── cdfs.c │ │ │ ├── libchdr │ │ │ │ ├── libchdr_bitstream.c │ │ │ │ ├── libchdr_cdrom.c │ │ │ │ ├── libchdr_chd.c │ │ │ │ ├── libchdr_flac.c │ │ │ │ └── libchdr_huffman.c │ │ │ └── m3u │ │ │ │ └── m3u_file.c │ │ │ ├── libFLAC │ │ │ ├── bitmath.c │ │ │ ├── bitreader.c │ │ │ ├── cpu.c │ │ │ ├── crc.c │ │ │ ├── fixed.c │ │ │ ├── float.c │ │ │ ├── format.c │ │ │ ├── include │ │ │ │ ├── FLAC │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── callback.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── metadata.h │ │ │ │ │ ├── ordinals.h │ │ │ │ │ └── stream_decoder.h │ │ │ │ ├── private │ │ │ │ │ ├── bitmath.h │ │ │ │ │ ├── bitreader.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── fixed.h │ │ │ │ │ ├── float.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── md5.h │ │ │ │ │ └── memory.h │ │ │ │ ├── protected │ │ │ │ │ └── stream_decoder.h │ │ │ │ └── share │ │ │ │ │ ├── alloc.h │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── endswap.h │ │ │ │ │ ├── win_utf8_io.h │ │ │ │ │ └── windows_unicode_filenames.h │ │ │ ├── lpc.c │ │ │ ├── lpc_intrin_avx2.c │ │ │ ├── lpc_intrin_sse.c │ │ │ ├── lpc_intrin_sse2.c │ │ │ ├── lpc_intrin_sse41.c │ │ │ ├── md5.c │ │ │ ├── memory.c │ │ │ ├── stream_decoder.c │ │ │ └── windows_unicode_filenames.c │ │ │ ├── libz │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzfile.h │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── libz-crc32.c │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ │ ├── lists │ │ │ ├── dir_list.c │ │ │ └── string_list.c │ │ │ ├── memmap │ │ │ ├── memalign.c │ │ │ └── memmap.c │ │ │ ├── streams │ │ │ ├── chd_stream.c │ │ │ ├── file_stream.c │ │ │ ├── file_stream_transforms.c │ │ │ ├── interface_stream.c │ │ │ ├── memory_stream.c │ │ │ ├── rzip_stream.c │ │ │ ├── stdin_stream.c │ │ │ ├── trans_stream.c │ │ │ ├── trans_stream_pipe.c │ │ │ └── trans_stream_zlib.c │ │ │ ├── string │ │ │ └── stdstring.c │ │ │ ├── time │ │ │ └── rtime.c │ │ │ ├── utils │ │ │ └── md5.c │ │ │ └── vfs │ │ │ ├── vfs_implementation.c │ │ │ ├── vfs_implementation_cdrom.c │ │ │ └── vfs_implementation_uwp.cpp │ └── rcheevos │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _config.yml │ │ ├── include │ │ ├── rc_api_info.h │ │ ├── rc_api_request.h │ │ ├── rc_api_runtime.h │ │ ├── rc_api_user.h │ │ ├── rc_consoles.h │ │ ├── rc_error.h │ │ ├── rc_hash.h │ │ ├── rc_runtime.h │ │ ├── rc_runtime_types.h │ │ ├── rc_url.h │ │ └── rcheevos.h │ │ └── src │ │ ├── rapi │ │ ├── rc_api_common.c │ │ ├── rc_api_common.h │ │ ├── rc_api_info.c │ │ ├── rc_api_runtime.c │ │ └── rc_api_user.c │ │ ├── rcheevos │ │ ├── alloc.c │ │ ├── compat.c │ │ ├── condition.c │ │ ├── condset.c │ │ ├── consoleinfo.c │ │ ├── format.c │ │ ├── lboard.c │ │ ├── memref.c │ │ ├── operand.c │ │ ├── rc_compat.h │ │ ├── rc_internal.h │ │ ├── rc_libretro.c │ │ ├── rc_libretro.h │ │ ├── rc_version.h │ │ ├── richpresence.c │ │ ├── runtime.c │ │ ├── runtime_progress.c │ │ ├── trigger.c │ │ └── value.c │ │ ├── rhash │ │ ├── cdreader.c │ │ ├── hash.c │ │ └── md5.h │ │ └── rurl │ │ └── url.c └── nanosvg │ ├── CMakeLists.txt │ ├── nanosvg.h │ ├── nanosvg_license.txt │ ├── nanosvgrast.h │ └── src │ └── nanosvg_impl.cpp ├── locale ├── CMakeLists.txt ├── checkLocale.sh ├── emulationstation2.pot └── lang │ ├── ar │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── ca │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── cy_GB │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── de │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── el │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── es │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── es_MX │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── eu_ES │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── fr │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── he │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── hu │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── it │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── ja_JP │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── ko │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── nb_NO │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── nl │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── nn_NO │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── oc_FR │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── pl │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── pt_BR │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── pt_PT │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── ru_RU │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── sv_SE │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── tr │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── uk_UA │ └── LC_MESSAGES │ │ └── emulationstation2.po │ ├── zh_CN │ └── LC_MESSAGES │ │ └── emulationstation2.po │ └── zh_TW │ └── LC_MESSAGES │ └── emulationstation2.po ├── opensans_license.txt ├── resources ├── Cairo.ttf ├── DroidSansFallbackFull.ttf ├── NanumMyeongjo.ttf ├── Rubik-Regular.ttf ├── alert.svg ├── arrow.svg ├── battery │ ├── 25.svg │ ├── 50.svg │ ├── 75.svg │ ├── empty.svg │ ├── full.svg │ └── incharge.svg ├── blank.png ├── busy_0.svg ├── busy_1.svg ├── busy_2.svg ├── busy_3.svg ├── button.png ├── button_filled.png ├── cartridge.svg ├── checkbox_checked.svg ├── checkbox_unchecked.svg ├── checksound.ogg ├── fav_add.svg ├── fav_remove.svg ├── flags │ ├── au.png │ ├── br.png │ ├── ca.png │ ├── ch.png │ ├── de.png │ ├── es.png │ ├── eu.png │ ├── fr.png │ ├── gr.png │ ├── in.png │ ├── it.png │ ├── jp.png │ ├── kr.png │ ├── nl.png │ ├── no.png │ ├── pt.png │ ├── ru.png │ ├── sw.png │ ├── uk.png │ ├── us.png │ └── wr.png ├── folder.svg ├── fontawesome-webfont.ttf ├── frame.png ├── freeslot.svg ├── genres.xml ├── help │ ├── F1.svg │ ├── analog_down.svg │ ├── analog_left.svg │ ├── analog_right.svg │ ├── analog_stick.svg │ ├── analog_thumb.svg │ ├── analog_up.svg │ ├── button_1.svg │ ├── button_2.svg │ ├── button_3.svg │ ├── button_4.svg │ ├── button_a.svg │ ├── button_b.svg │ ├── button_circle.svg │ ├── button_cross.svg │ ├── button_hotkey.svg │ ├── button_l.svg │ ├── button_lr.svg │ ├── button_lt.svg │ ├── button_r.svg │ ├── button_rt.svg │ ├── button_select.svg │ ├── button_square.svg │ ├── button_start.svg │ ├── button_triangle.svg │ ├── button_x.svg │ ├── button_y.svg │ ├── buttons_east.svg │ ├── buttons_north.svg │ ├── buttons_south.svg │ ├── buttons_west.svg │ ├── dpad_all.svg │ ├── dpad_down.svg │ ├── dpad_left.svg │ ├── dpad_leftright.svg │ ├── dpad_right.svg │ ├── dpad_up.svg │ └── dpad_updown.svg ├── info.svg ├── kblayout.svg ├── mamebioses.xml ├── mamedevices.xml ├── mamenames.xml ├── network.svg ├── off.svg ├── on.svg ├── opensans_hebrew_condensed_light.ttf ├── opensans_hebrew_condensed_regular.ttf ├── option_arrow.svg ├── pdf.jpg ├── question.svg ├── scroll_gradient.png ├── search.svg ├── services │ ├── index.html │ └── main.css ├── slider_knob.svg ├── splash.svg ├── star_filled.svg ├── star_unfilled.svg ├── textinput_ninepatch.png ├── textinput_ninepatch_active.png ├── ubuntu_condensed.ttf ├── vid.jpg ├── warning.svg ├── window_icon_16.png ├── window_icon_24.png └── window_icon_256.png └── ubuntu_licence.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/.gitignore -------------------------------------------------------------------------------- /CMake/Packages/FindFreeImage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindFreeImage.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindIntl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindIntl.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindOpenGLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindOpenGLES.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindOpenGLES2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindOpenGLES2.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindPackageHandleStandardArgs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindPackageHandleStandardArgs.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindPackageMessage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindPackageMessage.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindRapidJSON.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindRapidJSON.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindSDL2.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindSDL2MIXER.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindSDL2MIXER.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindVLC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindVLC.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindlibCEC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/FindlibCEC.cmake -------------------------------------------------------------------------------- /CMake/Packages/MacroEnsureVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Packages/MacroEnsureVersion.cmake -------------------------------------------------------------------------------- /CMake/Utils/FindPkgMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMake/Utils/FindPkgMacros.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/CREDITS.md -------------------------------------------------------------------------------- /DEVNOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/DEVNOTES.md -------------------------------------------------------------------------------- /GAMELISTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/GAMELISTS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/README.md -------------------------------------------------------------------------------- /SYSTEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/SYSTEMS.md -------------------------------------------------------------------------------- /THEMES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/THEMES.md -------------------------------------------------------------------------------- /emulationstation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/emulationstation.sh -------------------------------------------------------------------------------- /es-app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/CMakeLists.txt -------------------------------------------------------------------------------- /es-app/src/ApiSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ApiSystem.cpp -------------------------------------------------------------------------------- /es-app/src/ApiSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ApiSystem.h -------------------------------------------------------------------------------- /es-app/src/CollectionSystemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/CollectionSystemManager.cpp -------------------------------------------------------------------------------- /es-app/src/CollectionSystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/CollectionSystemManager.h -------------------------------------------------------------------------------- /es-app/src/ContentInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ContentInstaller.cpp -------------------------------------------------------------------------------- /es-app/src/ContentInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ContentInstaller.h -------------------------------------------------------------------------------- /es-app/src/EmulationStation.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/EmulationStation.aps -------------------------------------------------------------------------------- /es-app/src/EmulationStation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/EmulationStation.h -------------------------------------------------------------------------------- /es-app/src/EmulationStation.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/EmulationStation.rc -------------------------------------------------------------------------------- /es-app/src/FileData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/FileData.cpp -------------------------------------------------------------------------------- /es-app/src/FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/FileData.h -------------------------------------------------------------------------------- /es-app/src/FileFilterIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/FileFilterIndex.cpp -------------------------------------------------------------------------------- /es-app/src/FileFilterIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/FileFilterIndex.h -------------------------------------------------------------------------------- /es-app/src/FileSorts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/FileSorts.cpp -------------------------------------------------------------------------------- /es-app/src/FileSorts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/FileSorts.h -------------------------------------------------------------------------------- /es-app/src/Gamelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/Gamelist.cpp -------------------------------------------------------------------------------- /es-app/src/Gamelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/Gamelist.h -------------------------------------------------------------------------------- /es-app/src/Genres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/Genres.cpp -------------------------------------------------------------------------------- /es-app/src/Genres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/Genres.h -------------------------------------------------------------------------------- /es-app/src/KeyboardMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/KeyboardMapping.cpp -------------------------------------------------------------------------------- /es-app/src/KeyboardMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/KeyboardMapping.h -------------------------------------------------------------------------------- /es-app/src/LangParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/LangParser.cpp -------------------------------------------------------------------------------- /es-app/src/LangParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/LangParser.h -------------------------------------------------------------------------------- /es-app/src/LibretroRatio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/LibretroRatio.cpp -------------------------------------------------------------------------------- /es-app/src/LibretroRatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/LibretroRatio.h -------------------------------------------------------------------------------- /es-app/src/MetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/MetaData.cpp -------------------------------------------------------------------------------- /es-app/src/MetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/MetaData.h -------------------------------------------------------------------------------- /es-app/src/NetworkThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/NetworkThread.cpp -------------------------------------------------------------------------------- /es-app/src/NetworkThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/NetworkThread.h -------------------------------------------------------------------------------- /es-app/src/PlatformId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/PlatformId.cpp -------------------------------------------------------------------------------- /es-app/src/PlatformId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/PlatformId.h -------------------------------------------------------------------------------- /es-app/src/Playlists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/Playlists.cpp -------------------------------------------------------------------------------- /es-app/src/Playlists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/Playlists.h -------------------------------------------------------------------------------- /es-app/src/RetroAchievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/RetroAchievements.cpp -------------------------------------------------------------------------------- /es-app/src/RetroAchievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/RetroAchievements.h -------------------------------------------------------------------------------- /es-app/src/SaveState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/SaveState.cpp -------------------------------------------------------------------------------- /es-app/src/SaveState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/SaveState.h -------------------------------------------------------------------------------- /es-app/src/SaveStateRepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/SaveStateRepository.cpp -------------------------------------------------------------------------------- /es-app/src/SaveStateRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/SaveStateRepository.h -------------------------------------------------------------------------------- /es-app/src/ScraperCmdLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ScraperCmdLine.cpp -------------------------------------------------------------------------------- /es-app/src/ScraperCmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ScraperCmdLine.h -------------------------------------------------------------------------------- /es-app/src/SystemData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/SystemData.cpp -------------------------------------------------------------------------------- /es-app/src/SystemData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/SystemData.h -------------------------------------------------------------------------------- /es-app/src/SystemScreenSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/SystemScreenSaver.cpp -------------------------------------------------------------------------------- /es-app/src/SystemScreenSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/SystemScreenSaver.h -------------------------------------------------------------------------------- /es-app/src/ThreadedBluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ThreadedBluetooth.cpp -------------------------------------------------------------------------------- /es-app/src/ThreadedBluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ThreadedBluetooth.h -------------------------------------------------------------------------------- /es-app/src/ThreadedHasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ThreadedHasher.cpp -------------------------------------------------------------------------------- /es-app/src/ThreadedHasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/ThreadedHasher.h -------------------------------------------------------------------------------- /es-app/src/Win32ApiSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/Win32ApiSystem.cpp -------------------------------------------------------------------------------- /es-app/src/Win32ApiSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/Win32ApiSystem.h -------------------------------------------------------------------------------- /es-app/src/animations/LaunchAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/animations/LaunchAnimation.h -------------------------------------------------------------------------------- /es-app/src/animations/MoveCameraAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/animations/MoveCameraAnimation.h -------------------------------------------------------------------------------- /es-app/src/components/AsyncReqComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/components/AsyncReqComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/AsyncReqComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/components/AsyncReqComponent.h -------------------------------------------------------------------------------- /es-app/src/components/CarouselComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/components/CarouselComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/CarouselComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/components/CarouselComponent.h -------------------------------------------------------------------------------- /es-app/src/components/RatingComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/components/RatingComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/RatingComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/components/RatingComponent.h -------------------------------------------------------------------------------- /es-app/src/components/ScraperSearchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/components/ScraperSearchComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/ScraperSearchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/components/ScraperSearchComponent.h -------------------------------------------------------------------------------- /es-app/src/components/TextListComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/components/TextListComponent.h -------------------------------------------------------------------------------- /es-app/src/es_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/es_icon.ico -------------------------------------------------------------------------------- /es-app/src/guis/GuiAutoScrape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiAutoScrape.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiAutoScrape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiAutoScrape.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBackup.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiBackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBackup.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiBackupStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBackupStart.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiBackupStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBackupStart.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiBatoceraStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBatoceraStore.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiBatoceraStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBatoceraStore.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiBezelInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBezelInstaller.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiBezelInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBezelInstaller.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiBios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBios.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBios.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiBluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBluetooth.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiBluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiBluetooth.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiCollectionSystemsOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiCollectionSystemsOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiCollectionSystemsOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiCollectionSystemsOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiDecorationOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiDecorationOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiDecorationOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiDecorationOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiFileBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiFileBrowser.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiFileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiFileBrowser.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameAchievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGameAchievements.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameAchievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGameAchievements.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGameOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGameOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGameScraper.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGameScraper.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGamelistFilter.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGamelistFilter.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGamelistOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGamelistOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGeneralScreensaverOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGeneralScreensaverOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGeneralScreensaverOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiGeneralScreensaverOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiHashStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiHashStart.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiHashStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiHashStart.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiImageViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiImageViewer.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiImageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiImageViewer.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiInstall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiInstall.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiInstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiInstall.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiInstallStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiInstallStart.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiInstallStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiInstallStart.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiKeyMappingEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiKeyMappingEditor.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiKeyMappingEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiKeyMappingEditor.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiKeyboardLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiKeyboardLayout.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiKeyboardLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiKeyboardLayout.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiLoading.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiMenu.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiMenu.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiMetaDataEd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiMetaDataEd.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiMetaDataEd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiMetaDataEd.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiMoonlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiMoonlight.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiMoonlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiMoonlight.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiNetPlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiNetPlay.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiNetPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiNetPlay.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiPackageInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiPackageInstaller.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiPackageInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiPackageInstaller.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiRetroAchievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiRetroAchievements.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiRetroAchievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiRetroAchievements.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiSaveState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiSaveState.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiSaveState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiSaveState.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiScraperStart.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiScraperStart.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiSettings.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiSettings.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiThemeInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiThemeInstaller.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiThemeInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiThemeInstaller.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiUpdate.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiUpdate.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiWifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiWifi.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiWifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/guis/GuiWifi.h -------------------------------------------------------------------------------- /es-app/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/main.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/ArcadeDBJSONScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/ArcadeDBJSONScraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/ArcadeDBJSONScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/ArcadeDBJSONScraper.h -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBJSONScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/GamesDBJSONScraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBJSONScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/GamesDBJSONScraper.h -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBJSONScraperResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/GamesDBJSONScraperResources.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBJSONScraperResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/GamesDBJSONScraperResources.h -------------------------------------------------------------------------------- /es-app/src/scrapers/HfsDBScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/HfsDBScraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/HfsDBScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/HfsDBScraper.h -------------------------------------------------------------------------------- /es-app/src/scrapers/Scraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/Scraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/Scraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/Scraper.h -------------------------------------------------------------------------------- /es-app/src/scrapers/ScreenScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/ScreenScraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/ScreenScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/ScreenScraper.h -------------------------------------------------------------------------------- /es-app/src/scrapers/ThreadedScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/ThreadedScraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/ThreadedScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/scrapers/ThreadedScraper.h -------------------------------------------------------------------------------- /es-app/src/services/HttpApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/services/HttpApi.cpp -------------------------------------------------------------------------------- /es-app/src/services/HttpApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/services/HttpApi.h -------------------------------------------------------------------------------- /es-app/src/services/HttpServerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/services/HttpServerThread.cpp -------------------------------------------------------------------------------- /es-app/src/services/HttpServerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/services/HttpServerThread.h -------------------------------------------------------------------------------- /es-app/src/services/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/services/httplib.h -------------------------------------------------------------------------------- /es-app/src/views/SystemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/SystemView.cpp -------------------------------------------------------------------------------- /es-app/src/views/SystemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/SystemView.h -------------------------------------------------------------------------------- /es-app/src/views/UIModeController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/UIModeController.cpp -------------------------------------------------------------------------------- /es-app/src/views/UIModeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/UIModeController.h -------------------------------------------------------------------------------- /es-app/src/views/ViewController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/ViewController.cpp -------------------------------------------------------------------------------- /es-app/src/views/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/ViewController.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/BasicGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/BasicGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/BasicGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/BasicGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/CarouselGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/CarouselGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/CarouselGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/CarouselGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/DetailedContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/DetailedContainer.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/DetailedContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/DetailedContainer.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/DetailedGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/DetailedGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/DetailedGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/DetailedGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/GameNameFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/GameNameFormatter.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/GameNameFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/GameNameFormatter.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/GridGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/GridGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/GridGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/GridGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/IGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/IGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/IGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/IGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/ISimpleGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/ISimpleGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/ISimpleGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/ISimpleGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/VideoGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/VideoGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/VideoGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-app/src/views/gamelist/VideoGameListView.h -------------------------------------------------------------------------------- /es-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/CMakeLists.txt -------------------------------------------------------------------------------- /es-core/src/AsyncHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/AsyncHandle.h -------------------------------------------------------------------------------- /es-core/src/AudioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/AudioManager.cpp -------------------------------------------------------------------------------- /es-core/src/AudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/AudioManager.h -------------------------------------------------------------------------------- /es-core/src/BrightnessControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/BrightnessControl.cpp -------------------------------------------------------------------------------- /es-core/src/BrightnessControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/BrightnessControl.h -------------------------------------------------------------------------------- /es-core/src/CECInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/CECInput.cpp -------------------------------------------------------------------------------- /es-core/src/CECInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/CECInput.h -------------------------------------------------------------------------------- /es-core/src/GuiComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/GuiComponent.cpp -------------------------------------------------------------------------------- /es-core/src/GuiComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/GuiComponent.h -------------------------------------------------------------------------------- /es-core/src/HelpPrompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/HelpPrompt.h -------------------------------------------------------------------------------- /es-core/src/HelpStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/HelpStyle.cpp -------------------------------------------------------------------------------- /es-core/src/HelpStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/HelpStyle.h -------------------------------------------------------------------------------- /es-core/src/HttpReq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/HttpReq.cpp -------------------------------------------------------------------------------- /es-core/src/HttpReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/HttpReq.h -------------------------------------------------------------------------------- /es-core/src/ImageIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/ImageIO.cpp -------------------------------------------------------------------------------- /es-core/src/ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/ImageIO.h -------------------------------------------------------------------------------- /es-core/src/InputConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/InputConfig.cpp -------------------------------------------------------------------------------- /es-core/src/InputConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/InputConfig.h -------------------------------------------------------------------------------- /es-core/src/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/InputManager.cpp -------------------------------------------------------------------------------- /es-core/src/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/InputManager.h -------------------------------------------------------------------------------- /es-core/src/LocaleES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/LocaleES.cpp -------------------------------------------------------------------------------- /es-core/src/LocaleES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/LocaleES.h -------------------------------------------------------------------------------- /es-core/src/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Log.cpp -------------------------------------------------------------------------------- /es-core/src/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Log.h -------------------------------------------------------------------------------- /es-core/src/MameNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/MameNames.cpp -------------------------------------------------------------------------------- /es-core/src/MameNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/MameNames.h -------------------------------------------------------------------------------- /es-core/src/MultiStateInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/MultiStateInput.cpp -------------------------------------------------------------------------------- /es-core/src/MultiStateInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/MultiStateInput.h -------------------------------------------------------------------------------- /es-core/src/PowerSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/PowerSaver.cpp -------------------------------------------------------------------------------- /es-core/src/PowerSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/PowerSaver.h -------------------------------------------------------------------------------- /es-core/src/Scripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Scripting.cpp -------------------------------------------------------------------------------- /es-core/src/Scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Scripting.h -------------------------------------------------------------------------------- /es-core/src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Settings.cpp -------------------------------------------------------------------------------- /es-core/src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Settings.h -------------------------------------------------------------------------------- /es-core/src/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Sound.cpp -------------------------------------------------------------------------------- /es-core/src/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Sound.h -------------------------------------------------------------------------------- /es-core/src/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Splash.cpp -------------------------------------------------------------------------------- /es-core/src/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Splash.h -------------------------------------------------------------------------------- /es-core/src/SystemConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/SystemConf.cpp -------------------------------------------------------------------------------- /es-core/src/SystemConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/SystemConf.h -------------------------------------------------------------------------------- /es-core/src/TextToSpeech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/TextToSpeech.cpp -------------------------------------------------------------------------------- /es-core/src/TextToSpeech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/TextToSpeech.h -------------------------------------------------------------------------------- /es-core/src/ThemeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/ThemeData.cpp -------------------------------------------------------------------------------- /es-core/src/ThemeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/ThemeData.h -------------------------------------------------------------------------------- /es-core/src/VolumeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/VolumeControl.cpp -------------------------------------------------------------------------------- /es-core/src/VolumeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/VolumeControl.h -------------------------------------------------------------------------------- /es-core/src/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Window.cpp -------------------------------------------------------------------------------- /es-core/src/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/Window.h -------------------------------------------------------------------------------- /es-core/src/anim/StoryboardAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/anim/StoryboardAnimator.cpp -------------------------------------------------------------------------------- /es-core/src/anim/StoryboardAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/anim/StoryboardAnimator.h -------------------------------------------------------------------------------- /es-core/src/anim/ThemeAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/anim/ThemeAnimation.h -------------------------------------------------------------------------------- /es-core/src/anim/ThemeStoryboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/anim/ThemeStoryboard.cpp -------------------------------------------------------------------------------- /es-core/src/anim/ThemeStoryboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/anim/ThemeStoryboard.h -------------------------------------------------------------------------------- /es-core/src/animations/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/animations/Animation.h -------------------------------------------------------------------------------- /es-core/src/animations/AnimationController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/animations/AnimationController.cpp -------------------------------------------------------------------------------- /es-core/src/animations/AnimationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/animations/AnimationController.h -------------------------------------------------------------------------------- /es-core/src/animations/LambdaAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/animations/LambdaAnimation.h -------------------------------------------------------------------------------- /es-core/src/components/AnimatedImageComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/AnimatedImageComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/AnimatedImageComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/AnimatedImageComponent.h -------------------------------------------------------------------------------- /es-core/src/components/AsyncNotificationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/AsyncNotificationComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/AsyncNotificationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/AsyncNotificationComponent.h -------------------------------------------------------------------------------- /es-core/src/components/BatteryIndicatorComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/BatteryIndicatorComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/BatteryIndicatorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/BatteryIndicatorComponent.h -------------------------------------------------------------------------------- /es-core/src/components/BusyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/BusyComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/BusyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/BusyComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ButtonComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ButtonComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/ButtonComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ButtonComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ComponentGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ComponentGrid.cpp -------------------------------------------------------------------------------- /es-core/src/components/ComponentGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ComponentGrid.h -------------------------------------------------------------------------------- /es-core/src/components/ComponentList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ComponentList.cpp -------------------------------------------------------------------------------- /es-core/src/components/ComponentList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ComponentList.h -------------------------------------------------------------------------------- /es-core/src/components/ComponentTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ComponentTab.cpp -------------------------------------------------------------------------------- /es-core/src/components/ComponentTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ComponentTab.h -------------------------------------------------------------------------------- /es-core/src/components/ControllerActivityComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ControllerActivityComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/ControllerActivityComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ControllerActivityComponent.h -------------------------------------------------------------------------------- /es-core/src/components/DateTimeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/DateTimeComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/DateTimeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/DateTimeComponent.h -------------------------------------------------------------------------------- /es-core/src/components/DateTimeEditComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/DateTimeEditComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/DateTimeEditComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/DateTimeEditComponent.h -------------------------------------------------------------------------------- /es-core/src/components/GridTileComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/GridTileComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/GridTileComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/GridTileComponent.h -------------------------------------------------------------------------------- /es-core/src/components/HelpComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/HelpComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/HelpComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/HelpComponent.h -------------------------------------------------------------------------------- /es-core/src/components/IList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/IList.h -------------------------------------------------------------------------------- /es-core/src/components/ImageComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ImageComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/ImageComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ImageComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ImageGridComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ImageGridComponent.h -------------------------------------------------------------------------------- /es-core/src/components/MenuComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/MenuComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/MenuComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/MenuComponent.h -------------------------------------------------------------------------------- /es-core/src/components/MultiLineMenuEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/MultiLineMenuEntry.cpp -------------------------------------------------------------------------------- /es-core/src/components/MultiLineMenuEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/MultiLineMenuEntry.h -------------------------------------------------------------------------------- /es-core/src/components/NinePatchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/NinePatchComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/NinePatchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/NinePatchComponent.h -------------------------------------------------------------------------------- /es-core/src/components/OptionListComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/OptionListComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ScrollableContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ScrollableContainer.cpp -------------------------------------------------------------------------------- /es-core/src/components/ScrollableContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ScrollableContainer.h -------------------------------------------------------------------------------- /es-core/src/components/ScrollbarComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ScrollbarComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/ScrollbarComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/ScrollbarComponent.h -------------------------------------------------------------------------------- /es-core/src/components/SliderComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/SliderComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/SliderComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/SliderComponent.h -------------------------------------------------------------------------------- /es-core/src/components/SwitchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/SwitchComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/SwitchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/SwitchComponent.h -------------------------------------------------------------------------------- /es-core/src/components/TextComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/TextComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/TextComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/TextComponent.h -------------------------------------------------------------------------------- /es-core/src/components/TextEditComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/TextEditComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/TextEditComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/TextEditComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VideoComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/VideoComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VideoComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/VideoComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VideoPlayerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/VideoPlayerComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VideoPlayerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/VideoPlayerComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VideoVlcComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/VideoVlcComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VideoVlcComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/VideoVlcComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VolumeInfoComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/VolumeInfoComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VolumeInfoComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/VolumeInfoComponent.h -------------------------------------------------------------------------------- /es-core/src/components/WebImageComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/WebImageComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/WebImageComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/components/WebImageComponent.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiDetectDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiDetectDevice.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiDetectDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiDetectDevice.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiInfoPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiInfoPopup.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiInfoPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiInfoPopup.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiInputConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiInputConfig.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiInputConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiInputConfig.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiMsgBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiMsgBox.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiMsgBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiMsgBox.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiTextEditPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiTextEditPopup.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiTextEditPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiTextEditPopup.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiTextEditPopupKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiTextEditPopupKeyboard.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiTextEditPopupKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/guis/GuiTextEditPopupKeyboard.h -------------------------------------------------------------------------------- /es-core/src/math/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Misc.cpp -------------------------------------------------------------------------------- /es-core/src/math/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Misc.h -------------------------------------------------------------------------------- /es-core/src/math/Transform4x4f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Transform4x4f.cpp -------------------------------------------------------------------------------- /es-core/src/math/Transform4x4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Transform4x4f.h -------------------------------------------------------------------------------- /es-core/src/math/Vector2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Vector2f.cpp -------------------------------------------------------------------------------- /es-core/src/math/Vector2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Vector2f.h -------------------------------------------------------------------------------- /es-core/src/math/Vector2i.cpp: -------------------------------------------------------------------------------- 1 | #include "math/Vector2i.h" 2 | -------------------------------------------------------------------------------- /es-core/src/math/Vector2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Vector2i.h -------------------------------------------------------------------------------- /es-core/src/math/Vector3f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Vector3f.cpp -------------------------------------------------------------------------------- /es-core/src/math/Vector3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Vector3f.h -------------------------------------------------------------------------------- /es-core/src/math/Vector4f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Vector4f.cpp -------------------------------------------------------------------------------- /es-core/src/math/Vector4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/math/Vector4f.h -------------------------------------------------------------------------------- /es-core/src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/platform.cpp -------------------------------------------------------------------------------- /es-core/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/platform.h -------------------------------------------------------------------------------- /es-core/src/renderers/GlExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/GlExtensions.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/GlExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/GlExtensions.h -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Renderer.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Renderer.h -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GL21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Renderer_GL21.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GL21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Renderer_GL21.h -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GLES10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Renderer_GLES10.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GLES10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Renderer_GLES10.h -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GLES20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Renderer_GLES20.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GLES20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Renderer_GLES20.h -------------------------------------------------------------------------------- /es-core/src/renderers/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Shader.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/renderers/Shader.h -------------------------------------------------------------------------------- /es-core/src/resources/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/Font.cpp -------------------------------------------------------------------------------- /es-core/src/resources/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/Font.h -------------------------------------------------------------------------------- /es-core/src/resources/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/ResourceManager.cpp -------------------------------------------------------------------------------- /es-core/src/resources/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/ResourceManager.h -------------------------------------------------------------------------------- /es-core/src/resources/TextureData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/TextureData.cpp -------------------------------------------------------------------------------- /es-core/src/resources/TextureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/TextureData.h -------------------------------------------------------------------------------- /es-core/src/resources/TextureDataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/TextureDataManager.cpp -------------------------------------------------------------------------------- /es-core/src/resources/TextureDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/TextureDataManager.h -------------------------------------------------------------------------------- /es-core/src/resources/TextureResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/TextureResource.cpp -------------------------------------------------------------------------------- /es-core/src/resources/TextureResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/resources/TextureResource.h -------------------------------------------------------------------------------- /es-core/src/utils/Delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/Delegate.h -------------------------------------------------------------------------------- /es-core/src/utils/FileSystemUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/FileSystemUtil.cpp -------------------------------------------------------------------------------- /es-core/src/utils/FileSystemUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/FileSystemUtil.h -------------------------------------------------------------------------------- /es-core/src/utils/Randomizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/Randomizer.cpp -------------------------------------------------------------------------------- /es-core/src/utils/Randomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/Randomizer.h -------------------------------------------------------------------------------- /es-core/src/utils/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/StringUtil.cpp -------------------------------------------------------------------------------- /es-core/src/utils/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/StringUtil.h -------------------------------------------------------------------------------- /es-core/src/utils/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/ThreadPool.cpp -------------------------------------------------------------------------------- /es-core/src/utils/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/ThreadPool.h -------------------------------------------------------------------------------- /es-core/src/utils/TimeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/TimeUtil.cpp -------------------------------------------------------------------------------- /es-core/src/utils/TimeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/TimeUtil.h -------------------------------------------------------------------------------- /es-core/src/utils/ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/ZipFile.cpp -------------------------------------------------------------------------------- /es-core/src/utils/ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/ZipFile.h -------------------------------------------------------------------------------- /es-core/src/utils/han.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/han.h -------------------------------------------------------------------------------- /es-core/src/utils/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/md5.cpp -------------------------------------------------------------------------------- /es-core/src/utils/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/md5.h -------------------------------------------------------------------------------- /es-core/src/utils/zip_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/es-core/src/utils/zip_file.hpp -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/id3v2lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/.gitignore -------------------------------------------------------------------------------- /external/id3v2lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/CMakeLists.txt -------------------------------------------------------------------------------- /external/id3v2lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/LICENSE -------------------------------------------------------------------------------- /external/id3v2lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/README.md -------------------------------------------------------------------------------- /external/id3v2lib/include/id3v2lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/include/id3v2lib.h -------------------------------------------------------------------------------- /external/id3v2lib/include/id3v2lib/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/include/id3v2lib/constants.h -------------------------------------------------------------------------------- /external/id3v2lib/include/id3v2lib/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/include/id3v2lib/frame.h -------------------------------------------------------------------------------- /external/id3v2lib/include/id3v2lib/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/include/id3v2lib/header.h -------------------------------------------------------------------------------- /external/id3v2lib/include/id3v2lib/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/include/id3v2lib/types.h -------------------------------------------------------------------------------- /external/id3v2lib/include/id3v2lib/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/include/id3v2lib/utils.h -------------------------------------------------------------------------------- /external/id3v2lib/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/src/CMakeLists.txt -------------------------------------------------------------------------------- /external/id3v2lib/src/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/src/frame.c -------------------------------------------------------------------------------- /external/id3v2lib/src/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/src/header.c -------------------------------------------------------------------------------- /external/id3v2lib/src/id3v2lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/src/id3v2lib.c -------------------------------------------------------------------------------- /external/id3v2lib/src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/src/types.c -------------------------------------------------------------------------------- /external/id3v2lib/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/id3v2lib/src/utils.c -------------------------------------------------------------------------------- /external/libcheevos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/CMakeLists.txt -------------------------------------------------------------------------------- /external/libcheevos/cheevos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/cheevos.cpp -------------------------------------------------------------------------------- /external/libcheevos/cheevos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/cheevos.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/array/rbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/array/rbuf.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/array/rhmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/array/rhmap.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/boolean.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/cdrom/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/cdrom/cdrom.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/apple_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/apple_compat.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/fnmatch.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/fopen_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/fopen_utf8.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/getopt.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/ifaddrs.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/intrinsics.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/msvc.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/msvc/stdint.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/posix_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/posix_string.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/strcasestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/strcasestr.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/strl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/strl.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/zlib/zconf.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/compat/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/compat/zlib/zlib.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/dr_libs/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/dr_libs/dr_flac.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/encodings/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/encodings/crc32.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/encodings/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/encodings/utf.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/file/file_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/file/file_path.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/formats/cdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/formats/cdfs.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/formats/m3u_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/formats/m3u_file.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/libchdr/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/libchdr/bitstream.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/libchdr/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/libchdr/cdrom.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/libchdr/chd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/libchdr/chd.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/libchdr/chdconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/libchdr/chdconfig.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/libchdr/coretypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/libchdr/coretypes.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/libchdr/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/libchdr/flac.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/libchdr/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/libchdr/huffman.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/libretro.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/lists/dir_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/lists/dir_list.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/lists/string_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/lists/string_list.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/lrc_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/lrc_hash.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/memalign.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/memmap.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_assert.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_common.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_common_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_common_api.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_dirent.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_endianness.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_environment.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_inline.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_math.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_miscellaneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_miscellaneous.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/retro_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/retro_timers.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/streams/chd_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/streams/chd_stream.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/streams/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/streams/file_stream.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/streams/memory_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/streams/memory_stream.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/streams/rzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/streams/rzip_stream.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/streams/stdin_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/streams/stdin_stream.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/streams/trans_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/streams/trans_stream.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/string/stdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/string/stdstring.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/time/rtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/time/rtime.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/vfs/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/vfs/vfs.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/vfs/vfs_implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/vfs/vfs_implementation.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/zconf.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/include/zlib.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7z.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zArcIn.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zBuf.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zBuf.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zCrc.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zCrc.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zCrcOpt.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zDec.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zFile.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zFile.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zStream.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zTypes.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/7zVersion.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Bcj2.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Bcj2.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Bra.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Bra.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Bra86.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/BraIA64.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Compiler.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/CpuArch.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/CpuArch.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Delta.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Delta.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/LzFind.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/LzFind.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/LzHash.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Lzma2Dec.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Lzma2Dec.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/LzmaDec.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/LzmaDec.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/LzmaEnc.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/LzmaEnc.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/7zip/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/7zip/Precomp.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/cdrom/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/cdrom/cdrom.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/compat/compat_fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/compat/compat_fnmatch.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/compat/compat_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/compat/compat_getopt.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/compat/compat_ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/compat/compat_ifaddrs.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/compat/compat_posix_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/compat/compat_posix_string.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/compat/compat_snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/compat/compat_snprintf.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/compat/compat_strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/compat/compat_strcasestr.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/compat/compat_strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/compat/compat_strl.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/compat/compat_vscprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/compat/compat_vscprintf.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/compat/fopen_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/compat/fopen_utf8.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/encodings/encoding_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/encodings/encoding_crc32.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/encodings/encoding_utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/encodings/encoding_utf.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/file/file_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/file/file_path.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/file/file_path_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/file/file_path_io.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/file/retro_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/file/retro_dirent.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/formats/cdfs/cdfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/formats/cdfs/cdfs.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/formats/libchdr/libchdr_chd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/formats/libchdr/libchdr_chd.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/formats/m3u/m3u_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/formats/m3u/m3u_file.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/bitmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/bitmath.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/bitreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/bitreader.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/cpu.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/crc.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/fixed.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/float.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/format.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/include/FLAC/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/include/FLAC/assert.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/include/FLAC/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/include/FLAC/export.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/include/FLAC/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/include/FLAC/format.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/include/private/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/include/private/cpu.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/include/private/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/include/private/crc.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/include/private/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/include/private/lpc.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/include/private/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/include/private/md5.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/include/share/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/include/share/alloc.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/lpc.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/lpc_intrin_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/lpc_intrin_avx2.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/lpc_intrin_sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/lpc_intrin_sse.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/lpc_intrin_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/lpc_intrin_sse2.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/lpc_intrin_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/lpc_intrin_sse41.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/md5.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/memory.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libFLAC/stream_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libFLAC/stream_decoder.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/adler32.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/compress.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/deflate.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/deflate.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/gzclose.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/gzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/gzfile.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/gzguts.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/gzlib.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/gzread.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/gzwrite.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/inffast.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/inffast.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/inffixed.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/inflate.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/inflate.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/inftrees.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/inftrees.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/libz-crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/libz-crc32.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/trees.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/trees.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/uncompr.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/zutil.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/libz/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/libz/zutil.h -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/lists/dir_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/lists/dir_list.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/lists/string_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/lists/string_list.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/memmap/memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/memmap/memalign.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/memmap/memmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/memmap/memmap.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/streams/chd_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/streams/chd_stream.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/streams/file_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/streams/file_stream.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/streams/interface_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/streams/interface_stream.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/streams/memory_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/streams/memory_stream.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/streams/rzip_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/streams/rzip_stream.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/streams/stdin_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/streams/stdin_stream.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/streams/trans_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/streams/trans_stream.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/streams/trans_stream_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/streams/trans_stream_pipe.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/streams/trans_stream_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/streams/trans_stream_zlib.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/string/stdstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/string/stdstring.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/time/rtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/time/rtime.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/utils/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/utils/md5.c -------------------------------------------------------------------------------- /external/libcheevos/libretro-common/src/vfs/vfs_implementation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/libretro-common/src/vfs/vfs_implementation.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/CHANGELOG.md -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/LICENSE -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/README.md -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/_config.yml -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_api_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_api_info.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_api_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_api_request.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_api_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_api_runtime.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_api_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_api_user.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_consoles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_consoles.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_error.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_hash.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_runtime.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_runtime_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_runtime_types.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rc_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rc_url.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/include/rcheevos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/include/rcheevos.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rapi/rc_api_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rapi/rc_api_common.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rapi/rc_api_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rapi/rc_api_common.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rapi/rc_api_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rapi/rc_api_info.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rapi/rc_api_runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rapi/rc_api_runtime.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rapi/rc_api_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rapi/rc_api_user.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/alloc.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/compat.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/condition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/condition.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/condset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/condset.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/consoleinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/consoleinfo.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/format.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/lboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/lboard.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/memref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/memref.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/operand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/operand.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/rc_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/rc_compat.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/rc_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/rc_internal.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/rc_libretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/rc_libretro.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/rc_libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/rc_libretro.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/rc_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/rc_version.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/richpresence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/richpresence.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/runtime.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/runtime_progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/runtime_progress.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/trigger.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rcheevos/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rcheevos/value.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rhash/cdreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rhash/cdreader.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rhash/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rhash/hash.c -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rhash/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rhash/md5.h -------------------------------------------------------------------------------- /external/libcheevos/rcheevos/src/rurl/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/libcheevos/rcheevos/src/rurl/url.c -------------------------------------------------------------------------------- /external/nanosvg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/nanosvg/CMakeLists.txt -------------------------------------------------------------------------------- /external/nanosvg/nanosvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/nanosvg/nanosvg.h -------------------------------------------------------------------------------- /external/nanosvg/nanosvg_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/nanosvg/nanosvg_license.txt -------------------------------------------------------------------------------- /external/nanosvg/nanosvgrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/nanosvg/nanosvgrast.h -------------------------------------------------------------------------------- /external/nanosvg/src/nanosvg_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/external/nanosvg/src/nanosvg_impl.cpp -------------------------------------------------------------------------------- /locale/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/CMakeLists.txt -------------------------------------------------------------------------------- /locale/checkLocale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/checkLocale.sh -------------------------------------------------------------------------------- /locale/emulationstation2.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/emulationstation2.pot -------------------------------------------------------------------------------- /locale/lang/ar/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/ar/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/ca/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/ca/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/cy_GB/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/cy_GB/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/de/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/de/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/el/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/el/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/es/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/es/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/es_MX/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/es_MX/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/eu_ES/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/eu_ES/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/fr/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/fr/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/he/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/he/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/hu/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/hu/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/it/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/it/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/ja_JP/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/ja_JP/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/ko/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/ko/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/nb_NO/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/nb_NO/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/nl/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/nl/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/nn_NO/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/nn_NO/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/oc_FR/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/oc_FR/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/pl/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/pl/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/pt_BR/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/pt_BR/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/pt_PT/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/pt_PT/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/ru_RU/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/ru_RU/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/sv_SE/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/sv_SE/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/tr/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/tr/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/uk_UA/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/uk_UA/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/zh_CN/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/zh_CN/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /locale/lang/zh_TW/LC_MESSAGES/emulationstation2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/locale/lang/zh_TW/LC_MESSAGES/emulationstation2.po -------------------------------------------------------------------------------- /opensans_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/opensans_license.txt -------------------------------------------------------------------------------- /resources/Cairo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/Cairo.ttf -------------------------------------------------------------------------------- /resources/DroidSansFallbackFull.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/DroidSansFallbackFull.ttf -------------------------------------------------------------------------------- /resources/NanumMyeongjo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/NanumMyeongjo.ttf -------------------------------------------------------------------------------- /resources/Rubik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/Rubik-Regular.ttf -------------------------------------------------------------------------------- /resources/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/alert.svg -------------------------------------------------------------------------------- /resources/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/arrow.svg -------------------------------------------------------------------------------- /resources/battery/25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/battery/25.svg -------------------------------------------------------------------------------- /resources/battery/50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/battery/50.svg -------------------------------------------------------------------------------- /resources/battery/75.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/battery/75.svg -------------------------------------------------------------------------------- /resources/battery/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/battery/empty.svg -------------------------------------------------------------------------------- /resources/battery/full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/battery/full.svg -------------------------------------------------------------------------------- /resources/battery/incharge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/battery/incharge.svg -------------------------------------------------------------------------------- /resources/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/blank.png -------------------------------------------------------------------------------- /resources/busy_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/busy_0.svg -------------------------------------------------------------------------------- /resources/busy_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/busy_1.svg -------------------------------------------------------------------------------- /resources/busy_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/busy_2.svg -------------------------------------------------------------------------------- /resources/busy_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/busy_3.svg -------------------------------------------------------------------------------- /resources/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/button.png -------------------------------------------------------------------------------- /resources/button_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/button_filled.png -------------------------------------------------------------------------------- /resources/cartridge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/cartridge.svg -------------------------------------------------------------------------------- /resources/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/checkbox_checked.svg -------------------------------------------------------------------------------- /resources/checkbox_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/checkbox_unchecked.svg -------------------------------------------------------------------------------- /resources/checksound.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/checksound.ogg -------------------------------------------------------------------------------- /resources/fav_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/fav_add.svg -------------------------------------------------------------------------------- /resources/fav_remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/fav_remove.svg -------------------------------------------------------------------------------- /resources/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/au.png -------------------------------------------------------------------------------- /resources/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/br.png -------------------------------------------------------------------------------- /resources/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/ca.png -------------------------------------------------------------------------------- /resources/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/ch.png -------------------------------------------------------------------------------- /resources/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/de.png -------------------------------------------------------------------------------- /resources/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/es.png -------------------------------------------------------------------------------- /resources/flags/eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/eu.png -------------------------------------------------------------------------------- /resources/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/fr.png -------------------------------------------------------------------------------- /resources/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/gr.png -------------------------------------------------------------------------------- /resources/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/in.png -------------------------------------------------------------------------------- /resources/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/it.png -------------------------------------------------------------------------------- /resources/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/jp.png -------------------------------------------------------------------------------- /resources/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/kr.png -------------------------------------------------------------------------------- /resources/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/nl.png -------------------------------------------------------------------------------- /resources/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/no.png -------------------------------------------------------------------------------- /resources/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/pt.png -------------------------------------------------------------------------------- /resources/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/ru.png -------------------------------------------------------------------------------- /resources/flags/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/sw.png -------------------------------------------------------------------------------- /resources/flags/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/uk.png -------------------------------------------------------------------------------- /resources/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/us.png -------------------------------------------------------------------------------- /resources/flags/wr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/flags/wr.png -------------------------------------------------------------------------------- /resources/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/folder.svg -------------------------------------------------------------------------------- /resources/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /resources/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/frame.png -------------------------------------------------------------------------------- /resources/freeslot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/freeslot.svg -------------------------------------------------------------------------------- /resources/genres.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/genres.xml -------------------------------------------------------------------------------- /resources/help/F1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/F1.svg -------------------------------------------------------------------------------- /resources/help/analog_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/analog_down.svg -------------------------------------------------------------------------------- /resources/help/analog_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/analog_left.svg -------------------------------------------------------------------------------- /resources/help/analog_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/analog_right.svg -------------------------------------------------------------------------------- /resources/help/analog_stick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/analog_stick.svg -------------------------------------------------------------------------------- /resources/help/analog_thumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/analog_thumb.svg -------------------------------------------------------------------------------- /resources/help/analog_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/analog_up.svg -------------------------------------------------------------------------------- /resources/help/button_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_1.svg -------------------------------------------------------------------------------- /resources/help/button_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_2.svg -------------------------------------------------------------------------------- /resources/help/button_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_3.svg -------------------------------------------------------------------------------- /resources/help/button_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_4.svg -------------------------------------------------------------------------------- /resources/help/button_a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_a.svg -------------------------------------------------------------------------------- /resources/help/button_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_b.svg -------------------------------------------------------------------------------- /resources/help/button_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_circle.svg -------------------------------------------------------------------------------- /resources/help/button_cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_cross.svg -------------------------------------------------------------------------------- /resources/help/button_hotkey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_hotkey.svg -------------------------------------------------------------------------------- /resources/help/button_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_l.svg -------------------------------------------------------------------------------- /resources/help/button_lr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_lr.svg -------------------------------------------------------------------------------- /resources/help/button_lt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_lt.svg -------------------------------------------------------------------------------- /resources/help/button_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_r.svg -------------------------------------------------------------------------------- /resources/help/button_rt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_rt.svg -------------------------------------------------------------------------------- /resources/help/button_select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_select.svg -------------------------------------------------------------------------------- /resources/help/button_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_square.svg -------------------------------------------------------------------------------- /resources/help/button_start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_start.svg -------------------------------------------------------------------------------- /resources/help/button_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_triangle.svg -------------------------------------------------------------------------------- /resources/help/button_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_x.svg -------------------------------------------------------------------------------- /resources/help/button_y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/button_y.svg -------------------------------------------------------------------------------- /resources/help/buttons_east.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/buttons_east.svg -------------------------------------------------------------------------------- /resources/help/buttons_north.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/buttons_north.svg -------------------------------------------------------------------------------- /resources/help/buttons_south.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/buttons_south.svg -------------------------------------------------------------------------------- /resources/help/buttons_west.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/buttons_west.svg -------------------------------------------------------------------------------- /resources/help/dpad_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/dpad_all.svg -------------------------------------------------------------------------------- /resources/help/dpad_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/dpad_down.svg -------------------------------------------------------------------------------- /resources/help/dpad_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/dpad_left.svg -------------------------------------------------------------------------------- /resources/help/dpad_leftright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/dpad_leftright.svg -------------------------------------------------------------------------------- /resources/help/dpad_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/dpad_right.svg -------------------------------------------------------------------------------- /resources/help/dpad_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/dpad_up.svg -------------------------------------------------------------------------------- /resources/help/dpad_updown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/help/dpad_updown.svg -------------------------------------------------------------------------------- /resources/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/info.svg -------------------------------------------------------------------------------- /resources/kblayout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/kblayout.svg -------------------------------------------------------------------------------- /resources/mamebioses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/mamebioses.xml -------------------------------------------------------------------------------- /resources/mamedevices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/mamedevices.xml -------------------------------------------------------------------------------- /resources/mamenames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/mamenames.xml -------------------------------------------------------------------------------- /resources/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/network.svg -------------------------------------------------------------------------------- /resources/off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/off.svg -------------------------------------------------------------------------------- /resources/on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/on.svg -------------------------------------------------------------------------------- /resources/opensans_hebrew_condensed_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/opensans_hebrew_condensed_light.ttf -------------------------------------------------------------------------------- /resources/opensans_hebrew_condensed_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/opensans_hebrew_condensed_regular.ttf -------------------------------------------------------------------------------- /resources/option_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/option_arrow.svg -------------------------------------------------------------------------------- /resources/pdf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/pdf.jpg -------------------------------------------------------------------------------- /resources/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/question.svg -------------------------------------------------------------------------------- /resources/scroll_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/scroll_gradient.png -------------------------------------------------------------------------------- /resources/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/search.svg -------------------------------------------------------------------------------- /resources/services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/services/index.html -------------------------------------------------------------------------------- /resources/services/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/services/main.css -------------------------------------------------------------------------------- /resources/slider_knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/slider_knob.svg -------------------------------------------------------------------------------- /resources/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/splash.svg -------------------------------------------------------------------------------- /resources/star_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/star_filled.svg -------------------------------------------------------------------------------- /resources/star_unfilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/star_unfilled.svg -------------------------------------------------------------------------------- /resources/textinput_ninepatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/textinput_ninepatch.png -------------------------------------------------------------------------------- /resources/textinput_ninepatch_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/textinput_ninepatch_active.png -------------------------------------------------------------------------------- /resources/ubuntu_condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/ubuntu_condensed.ttf -------------------------------------------------------------------------------- /resources/vid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/vid.jpg -------------------------------------------------------------------------------- /resources/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/warning.svg -------------------------------------------------------------------------------- /resources/window_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/window_icon_16.png -------------------------------------------------------------------------------- /resources/window_icon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/window_icon_24.png -------------------------------------------------------------------------------- /resources/window_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/resources/window_icon_256.png -------------------------------------------------------------------------------- /ubuntu_licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustEnoughLinuxOS/emulationstation/HEAD/ubuntu_licence.txt --------------------------------------------------------------------------------