├── README.md ├── installer ├── Makefile ├── coreinit.h ├── crt0.S ├── elf_abi.h ├── kernel_patches.S ├── kexploit.c ├── kexploit.h ├── launcher.c ├── logger.c ├── logger.h ├── socket.h ├── structs.h └── types.h ├── sd_loader ├── Makefile └── src │ ├── elf_abi.h │ ├── entry.c │ ├── kernel_hooks.S │ └── link.ld └── src ├── common ├── common.h ├── kernel_defs.h ├── loader_defs.h ├── os_defs.h ├── retain_vars.c ├── retain_vars.h └── types.h ├── controller_patcher ├── .gitattributes ├── .gitignore ├── README.md ├── config_parser.cpp ├── config_parser.h ├── config_reader.cpp ├── config_reader.h ├── config_values.cpp ├── config_values.h ├── controller_patcher.c ├── controller_patcher.h ├── cp_retain_vars.c ├── cp_retain_vars.h ├── pad_const.c ├── pad_const.h ├── string_tools.cpp └── string_tools.hpp ├── dynamic_libs ├── .gitattributes ├── .gitignore ├── README.md ├── acp_functions.c ├── acp_functions.h ├── aoc_functions.c ├── aoc_functions.h ├── ax_functions.c ├── ax_functions.h ├── curl_functions.c ├── curl_functions.h ├── fs_defs.h ├── fs_functions.c ├── fs_functions.h ├── gx2_functions.c ├── gx2_functions.h ├── gx2_types.h ├── os_functions.c ├── os_functions.h ├── padscore_functions.c ├── padscore_functions.h ├── socket_functions.c ├── socket_functions.h ├── sys_functions.c ├── sys_functions.h ├── syshid_functions.c ├── syshid_functions.h ├── vpad_functions.c └── vpad_functions.h ├── fs ├── CFile.cpp ├── CFile.hpp ├── DirList.cpp ├── DirList.h ├── fs_utils.c ├── fs_utils.h ├── sd_fat_devoptab.c └── sd_fat_devoptab.h ├── game ├── GameLauncher.cpp ├── GameLauncher.h ├── GameList.cpp ├── GameList.h ├── memory_area_table.c ├── memory_area_table.h ├── rpx_rpl_table.c └── rpx_rpl_table.h ├── gui ├── FreeTypeGX.cpp ├── FreeTypeGX.h ├── GameBgImage.cpp ├── GameBgImage.h ├── GameIcon.cpp ├── GameIcon.h ├── GameIconModel.h ├── GridBackground.cpp ├── GridBackground.h ├── Gui.h ├── GuiButton.cpp ├── GuiButton.h ├── GuiCheckBox.cpp ├── GuiCheckBox.h ├── GuiController.h ├── GuiElement.cpp ├── GuiElement.h ├── GuiFrame.cpp ├── GuiFrame.h ├── GuiGameBrowser.h ├── GuiGameCarousel.cpp ├── GuiGameCarousel.h ├── GuiIconCarousel.cpp ├── GuiIconCarousel.h ├── GuiIconGrid.cpp ├── GuiIconGrid.h ├── GuiImage.cpp ├── GuiImage.h ├── GuiImageAsync.cpp ├── GuiImageAsync.h ├── GuiImageData.cpp ├── GuiImageData.h ├── GuiParticleImage.cpp ├── GuiParticleImage.h ├── GuiSelectBox.cpp ├── GuiSelectBox.h ├── GuiSound.cpp ├── GuiSound.h ├── GuiSwitch.cpp ├── GuiSwitch.h ├── GuiText.cpp ├── GuiText.h ├── GuiToggle.cpp ├── GuiToggle.h ├── GuiTrigger.cpp ├── GuiTrigger.h ├── Scrollbar.cpp ├── Scrollbar.h ├── VPadController.h ├── WPadController.h └── sigslot.h ├── kernel ├── kernel_functions.c ├── kernel_functions.h ├── kernel_hooks.S ├── syscalls.c ├── syscalls.h └── syscalls_asm.S ├── language ├── gettext.cpp └── gettext.h ├── menu ├── ButtonChoiceMenu.cpp ├── ButtonChoiceMenu.h ├── CreditsMenu.cpp ├── CreditsMenu.h ├── GameLauncherMenu.cpp ├── GameLauncherMenu.h ├── KeyPadMenu.cpp ├── KeyPadMenu.h ├── MainDrcButtonsFrame.h ├── MainWindow.cpp ├── MainWindow.h ├── ProgressWindow.cpp ├── ProgressWindow.h ├── SettingsCategoryMenu.cpp ├── SettingsCategoryMenu.h ├── SettingsMenu.cpp └── SettingsMenu.h ├── network ├── FileDownloader.cpp ├── FileDownloader.h ├── GameImageDownloader.cpp └── GameImageDownloader.h ├── patcher ├── aoc_patcher.cpp ├── aoc_patcher.h ├── cpp_to_c_util.cpp ├── cpp_to_c_util.h ├── extra_log_patcher.cpp ├── extra_log_patcher.h ├── fs_logger.c ├── fs_logger.h ├── fs_patcher.cpp ├── fs_patcher.h ├── fs_sd_patcher.cpp ├── fs_sd_patcher.h ├── hid_controller_function_patcher.cpp ├── hid_controller_function_patcher.h ├── patcher_util.cpp ├── patcher_util.h ├── pygecko.c ├── pygecko.h ├── rplrpx_patcher.cpp └── rplrpx_patcher.h ├── resources ├── Resources.cpp ├── Resources.h └── filelist.h ├── settings ├── CSettings.cpp ├── CSettings.h ├── CSettingsGame.cpp ├── CSettingsGame.h ├── SettingsDefs.h ├── SettingsEnums.h └── SettingsGameDefs.h ├── sounds ├── BufferCircle.cpp ├── BufferCircle.hpp ├── Mp3Decoder.cpp ├── Mp3Decoder.hpp ├── OggDecoder.cpp ├── OggDecoder.hpp ├── SoundDecoder.cpp ├── SoundDecoder.hpp ├── SoundHandler.cpp ├── SoundHandler.hpp ├── Voice.h ├── WavDecoder.cpp └── WavDecoder.hpp ├── system ├── AsyncDeleter.cpp ├── AsyncDeleter.h ├── CMutex.h ├── CThread.h ├── exception_handler.c ├── exception_handler.h ├── memory.c └── memory.h ├── utils ├── Directory.cpp ├── Directory.h ├── FileReplacer.cpp ├── FileReplacer.h ├── StringTools.cpp ├── StringTools.h ├── function_patcher.cpp ├── function_patcher.h ├── logger.c ├── logger.h ├── strings.c ├── strings.h ├── utils.c ├── utils.h ├── xml.c └── xml.h └── video ├── CVideo.cpp ├── CVideo.h ├── CursorDrawer.cpp ├── CursorDrawer.h └── shaders ├── ColorShader.cpp ├── ColorShader.h ├── FXAAShader.cpp ├── FXAAShader.h ├── FetchShader.h ├── PixelShader.h ├── Shader.h ├── Shader3D.cpp ├── Shader3D.h ├── ShaderFractalColor.cpp ├── ShaderFractalColor.h ├── Texture2DShader.cpp ├── Texture2DShader.h └── VertexShader.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/README.md -------------------------------------------------------------------------------- /installer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/Makefile -------------------------------------------------------------------------------- /installer/coreinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/coreinit.h -------------------------------------------------------------------------------- /installer/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/crt0.S -------------------------------------------------------------------------------- /installer/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/elf_abi.h -------------------------------------------------------------------------------- /installer/kernel_patches.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/kernel_patches.S -------------------------------------------------------------------------------- /installer/kexploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/kexploit.c -------------------------------------------------------------------------------- /installer/kexploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/kexploit.h -------------------------------------------------------------------------------- /installer/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/launcher.c -------------------------------------------------------------------------------- /installer/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/logger.c -------------------------------------------------------------------------------- /installer/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/logger.h -------------------------------------------------------------------------------- /installer/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/socket.h -------------------------------------------------------------------------------- /installer/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/structs.h -------------------------------------------------------------------------------- /installer/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/installer/types.h -------------------------------------------------------------------------------- /sd_loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/sd_loader/Makefile -------------------------------------------------------------------------------- /sd_loader/src/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/sd_loader/src/elf_abi.h -------------------------------------------------------------------------------- /sd_loader/src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/sd_loader/src/entry.c -------------------------------------------------------------------------------- /sd_loader/src/kernel_hooks.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/sd_loader/src/kernel_hooks.S -------------------------------------------------------------------------------- /sd_loader/src/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/sd_loader/src/link.ld -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/common/kernel_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/common/kernel_defs.h -------------------------------------------------------------------------------- /src/common/loader_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/common/loader_defs.h -------------------------------------------------------------------------------- /src/common/os_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/common/os_defs.h -------------------------------------------------------------------------------- /src/common/retain_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/common/retain_vars.c -------------------------------------------------------------------------------- /src/common/retain_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/common/retain_vars.h -------------------------------------------------------------------------------- /src/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/common/types.h -------------------------------------------------------------------------------- /src/controller_patcher/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/.gitattributes -------------------------------------------------------------------------------- /src/controller_patcher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/.gitignore -------------------------------------------------------------------------------- /src/controller_patcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/README.md -------------------------------------------------------------------------------- /src/controller_patcher/config_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/config_parser.cpp -------------------------------------------------------------------------------- /src/controller_patcher/config_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/config_parser.h -------------------------------------------------------------------------------- /src/controller_patcher/config_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/config_reader.cpp -------------------------------------------------------------------------------- /src/controller_patcher/config_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/config_reader.h -------------------------------------------------------------------------------- /src/controller_patcher/config_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/config_values.cpp -------------------------------------------------------------------------------- /src/controller_patcher/config_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/config_values.h -------------------------------------------------------------------------------- /src/controller_patcher/controller_patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/controller_patcher.c -------------------------------------------------------------------------------- /src/controller_patcher/controller_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/controller_patcher.h -------------------------------------------------------------------------------- /src/controller_patcher/cp_retain_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/cp_retain_vars.c -------------------------------------------------------------------------------- /src/controller_patcher/cp_retain_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/cp_retain_vars.h -------------------------------------------------------------------------------- /src/controller_patcher/pad_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/pad_const.c -------------------------------------------------------------------------------- /src/controller_patcher/pad_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/pad_const.h -------------------------------------------------------------------------------- /src/controller_patcher/string_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/string_tools.cpp -------------------------------------------------------------------------------- /src/controller_patcher/string_tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/controller_patcher/string_tools.hpp -------------------------------------------------------------------------------- /src/dynamic_libs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/.gitattributes -------------------------------------------------------------------------------- /src/dynamic_libs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/.gitignore -------------------------------------------------------------------------------- /src/dynamic_libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/README.md -------------------------------------------------------------------------------- /src/dynamic_libs/acp_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/acp_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/acp_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/acp_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/aoc_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/aoc_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/aoc_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/aoc_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/ax_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/ax_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/ax_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/ax_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/curl_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/curl_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/curl_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/curl_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/fs_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/fs_defs.h -------------------------------------------------------------------------------- /src/dynamic_libs/fs_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/fs_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/fs_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/fs_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/gx2_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/gx2_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/gx2_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/gx2_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/gx2_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/gx2_types.h -------------------------------------------------------------------------------- /src/dynamic_libs/os_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/os_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/os_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/os_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/padscore_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/padscore_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/padscore_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/padscore_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/socket_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/socket_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/socket_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/socket_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/sys_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/sys_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/sys_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/sys_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/syshid_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/syshid_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/syshid_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/syshid_functions.h -------------------------------------------------------------------------------- /src/dynamic_libs/vpad_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/vpad_functions.c -------------------------------------------------------------------------------- /src/dynamic_libs/vpad_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/dynamic_libs/vpad_functions.h -------------------------------------------------------------------------------- /src/fs/CFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/fs/CFile.cpp -------------------------------------------------------------------------------- /src/fs/CFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/fs/CFile.hpp -------------------------------------------------------------------------------- /src/fs/DirList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/fs/DirList.cpp -------------------------------------------------------------------------------- /src/fs/DirList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/fs/DirList.h -------------------------------------------------------------------------------- /src/fs/fs_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/fs/fs_utils.c -------------------------------------------------------------------------------- /src/fs/fs_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/fs/fs_utils.h -------------------------------------------------------------------------------- /src/fs/sd_fat_devoptab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/fs/sd_fat_devoptab.c -------------------------------------------------------------------------------- /src/fs/sd_fat_devoptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/fs/sd_fat_devoptab.h -------------------------------------------------------------------------------- /src/game/GameLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/game/GameLauncher.cpp -------------------------------------------------------------------------------- /src/game/GameLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/game/GameLauncher.h -------------------------------------------------------------------------------- /src/game/GameList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/game/GameList.cpp -------------------------------------------------------------------------------- /src/game/GameList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/game/GameList.h -------------------------------------------------------------------------------- /src/game/memory_area_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/game/memory_area_table.c -------------------------------------------------------------------------------- /src/game/memory_area_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/game/memory_area_table.h -------------------------------------------------------------------------------- /src/game/rpx_rpl_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/game/rpx_rpl_table.c -------------------------------------------------------------------------------- /src/game/rpx_rpl_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/game/rpx_rpl_table.h -------------------------------------------------------------------------------- /src/gui/FreeTypeGX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/FreeTypeGX.cpp -------------------------------------------------------------------------------- /src/gui/FreeTypeGX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/FreeTypeGX.h -------------------------------------------------------------------------------- /src/gui/GameBgImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GameBgImage.cpp -------------------------------------------------------------------------------- /src/gui/GameBgImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GameBgImage.h -------------------------------------------------------------------------------- /src/gui/GameIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GameIcon.cpp -------------------------------------------------------------------------------- /src/gui/GameIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GameIcon.h -------------------------------------------------------------------------------- /src/gui/GameIconModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GameIconModel.h -------------------------------------------------------------------------------- /src/gui/GridBackground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GridBackground.cpp -------------------------------------------------------------------------------- /src/gui/GridBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GridBackground.h -------------------------------------------------------------------------------- /src/gui/Gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/Gui.h -------------------------------------------------------------------------------- /src/gui/GuiButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiButton.cpp -------------------------------------------------------------------------------- /src/gui/GuiButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiButton.h -------------------------------------------------------------------------------- /src/gui/GuiCheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiCheckBox.cpp -------------------------------------------------------------------------------- /src/gui/GuiCheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiCheckBox.h -------------------------------------------------------------------------------- /src/gui/GuiController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiController.h -------------------------------------------------------------------------------- /src/gui/GuiElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiElement.cpp -------------------------------------------------------------------------------- /src/gui/GuiElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiElement.h -------------------------------------------------------------------------------- /src/gui/GuiFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiFrame.cpp -------------------------------------------------------------------------------- /src/gui/GuiFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiFrame.h -------------------------------------------------------------------------------- /src/gui/GuiGameBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiGameBrowser.h -------------------------------------------------------------------------------- /src/gui/GuiGameCarousel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiGameCarousel.cpp -------------------------------------------------------------------------------- /src/gui/GuiGameCarousel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiGameCarousel.h -------------------------------------------------------------------------------- /src/gui/GuiIconCarousel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiIconCarousel.cpp -------------------------------------------------------------------------------- /src/gui/GuiIconCarousel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiIconCarousel.h -------------------------------------------------------------------------------- /src/gui/GuiIconGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiIconGrid.cpp -------------------------------------------------------------------------------- /src/gui/GuiIconGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiIconGrid.h -------------------------------------------------------------------------------- /src/gui/GuiImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiImage.cpp -------------------------------------------------------------------------------- /src/gui/GuiImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiImage.h -------------------------------------------------------------------------------- /src/gui/GuiImageAsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiImageAsync.cpp -------------------------------------------------------------------------------- /src/gui/GuiImageAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiImageAsync.h -------------------------------------------------------------------------------- /src/gui/GuiImageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiImageData.cpp -------------------------------------------------------------------------------- /src/gui/GuiImageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiImageData.h -------------------------------------------------------------------------------- /src/gui/GuiParticleImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiParticleImage.cpp -------------------------------------------------------------------------------- /src/gui/GuiParticleImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiParticleImage.h -------------------------------------------------------------------------------- /src/gui/GuiSelectBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiSelectBox.cpp -------------------------------------------------------------------------------- /src/gui/GuiSelectBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiSelectBox.h -------------------------------------------------------------------------------- /src/gui/GuiSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiSound.cpp -------------------------------------------------------------------------------- /src/gui/GuiSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiSound.h -------------------------------------------------------------------------------- /src/gui/GuiSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiSwitch.cpp -------------------------------------------------------------------------------- /src/gui/GuiSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiSwitch.h -------------------------------------------------------------------------------- /src/gui/GuiText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiText.cpp -------------------------------------------------------------------------------- /src/gui/GuiText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiText.h -------------------------------------------------------------------------------- /src/gui/GuiToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiToggle.cpp -------------------------------------------------------------------------------- /src/gui/GuiToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiToggle.h -------------------------------------------------------------------------------- /src/gui/GuiTrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiTrigger.cpp -------------------------------------------------------------------------------- /src/gui/GuiTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/GuiTrigger.h -------------------------------------------------------------------------------- /src/gui/Scrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/Scrollbar.cpp -------------------------------------------------------------------------------- /src/gui/Scrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/Scrollbar.h -------------------------------------------------------------------------------- /src/gui/VPadController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/VPadController.h -------------------------------------------------------------------------------- /src/gui/WPadController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/WPadController.h -------------------------------------------------------------------------------- /src/gui/sigslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/gui/sigslot.h -------------------------------------------------------------------------------- /src/kernel/kernel_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/kernel/kernel_functions.c -------------------------------------------------------------------------------- /src/kernel/kernel_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/kernel/kernel_functions.h -------------------------------------------------------------------------------- /src/kernel/kernel_hooks.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/kernel/kernel_hooks.S -------------------------------------------------------------------------------- /src/kernel/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/kernel/syscalls.c -------------------------------------------------------------------------------- /src/kernel/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/kernel/syscalls.h -------------------------------------------------------------------------------- /src/kernel/syscalls_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/kernel/syscalls_asm.S -------------------------------------------------------------------------------- /src/language/gettext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/language/gettext.cpp -------------------------------------------------------------------------------- /src/language/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/language/gettext.h -------------------------------------------------------------------------------- /src/menu/ButtonChoiceMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/ButtonChoiceMenu.cpp -------------------------------------------------------------------------------- /src/menu/ButtonChoiceMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/ButtonChoiceMenu.h -------------------------------------------------------------------------------- /src/menu/CreditsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/CreditsMenu.cpp -------------------------------------------------------------------------------- /src/menu/CreditsMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/CreditsMenu.h -------------------------------------------------------------------------------- /src/menu/GameLauncherMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/GameLauncherMenu.cpp -------------------------------------------------------------------------------- /src/menu/GameLauncherMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/GameLauncherMenu.h -------------------------------------------------------------------------------- /src/menu/KeyPadMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/KeyPadMenu.cpp -------------------------------------------------------------------------------- /src/menu/KeyPadMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/KeyPadMenu.h -------------------------------------------------------------------------------- /src/menu/MainDrcButtonsFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/MainDrcButtonsFrame.h -------------------------------------------------------------------------------- /src/menu/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/MainWindow.cpp -------------------------------------------------------------------------------- /src/menu/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/MainWindow.h -------------------------------------------------------------------------------- /src/menu/ProgressWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/ProgressWindow.cpp -------------------------------------------------------------------------------- /src/menu/ProgressWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/ProgressWindow.h -------------------------------------------------------------------------------- /src/menu/SettingsCategoryMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/SettingsCategoryMenu.cpp -------------------------------------------------------------------------------- /src/menu/SettingsCategoryMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/SettingsCategoryMenu.h -------------------------------------------------------------------------------- /src/menu/SettingsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/SettingsMenu.cpp -------------------------------------------------------------------------------- /src/menu/SettingsMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/menu/SettingsMenu.h -------------------------------------------------------------------------------- /src/network/FileDownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/network/FileDownloader.cpp -------------------------------------------------------------------------------- /src/network/FileDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/network/FileDownloader.h -------------------------------------------------------------------------------- /src/network/GameImageDownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/network/GameImageDownloader.cpp -------------------------------------------------------------------------------- /src/network/GameImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/network/GameImageDownloader.h -------------------------------------------------------------------------------- /src/patcher/aoc_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/aoc_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/aoc_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/aoc_patcher.h -------------------------------------------------------------------------------- /src/patcher/cpp_to_c_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/cpp_to_c_util.cpp -------------------------------------------------------------------------------- /src/patcher/cpp_to_c_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/cpp_to_c_util.h -------------------------------------------------------------------------------- /src/patcher/extra_log_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/extra_log_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/extra_log_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/extra_log_patcher.h -------------------------------------------------------------------------------- /src/patcher/fs_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/fs_logger.c -------------------------------------------------------------------------------- /src/patcher/fs_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/fs_logger.h -------------------------------------------------------------------------------- /src/patcher/fs_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/fs_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/fs_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/fs_patcher.h -------------------------------------------------------------------------------- /src/patcher/fs_sd_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/fs_sd_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/fs_sd_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/fs_sd_patcher.h -------------------------------------------------------------------------------- /src/patcher/hid_controller_function_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/hid_controller_function_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/hid_controller_function_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/hid_controller_function_patcher.h -------------------------------------------------------------------------------- /src/patcher/patcher_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/patcher_util.cpp -------------------------------------------------------------------------------- /src/patcher/patcher_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/patcher_util.h -------------------------------------------------------------------------------- /src/patcher/pygecko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/pygecko.c -------------------------------------------------------------------------------- /src/patcher/pygecko.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/pygecko.h -------------------------------------------------------------------------------- /src/patcher/rplrpx_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/rplrpx_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/rplrpx_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/patcher/rplrpx_patcher.h -------------------------------------------------------------------------------- /src/resources/Resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/resources/Resources.cpp -------------------------------------------------------------------------------- /src/resources/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/resources/Resources.h -------------------------------------------------------------------------------- /src/resources/filelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/resources/filelist.h -------------------------------------------------------------------------------- /src/settings/CSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/settings/CSettings.cpp -------------------------------------------------------------------------------- /src/settings/CSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/settings/CSettings.h -------------------------------------------------------------------------------- /src/settings/CSettingsGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/settings/CSettingsGame.cpp -------------------------------------------------------------------------------- /src/settings/CSettingsGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/settings/CSettingsGame.h -------------------------------------------------------------------------------- /src/settings/SettingsDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/settings/SettingsDefs.h -------------------------------------------------------------------------------- /src/settings/SettingsEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/settings/SettingsEnums.h -------------------------------------------------------------------------------- /src/settings/SettingsGameDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/settings/SettingsGameDefs.h -------------------------------------------------------------------------------- /src/sounds/BufferCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/BufferCircle.cpp -------------------------------------------------------------------------------- /src/sounds/BufferCircle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/BufferCircle.hpp -------------------------------------------------------------------------------- /src/sounds/Mp3Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/Mp3Decoder.cpp -------------------------------------------------------------------------------- /src/sounds/Mp3Decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/Mp3Decoder.hpp -------------------------------------------------------------------------------- /src/sounds/OggDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/OggDecoder.cpp -------------------------------------------------------------------------------- /src/sounds/OggDecoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/OggDecoder.hpp -------------------------------------------------------------------------------- /src/sounds/SoundDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/SoundDecoder.cpp -------------------------------------------------------------------------------- /src/sounds/SoundDecoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/SoundDecoder.hpp -------------------------------------------------------------------------------- /src/sounds/SoundHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/SoundHandler.cpp -------------------------------------------------------------------------------- /src/sounds/SoundHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/SoundHandler.hpp -------------------------------------------------------------------------------- /src/sounds/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/Voice.h -------------------------------------------------------------------------------- /src/sounds/WavDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/WavDecoder.cpp -------------------------------------------------------------------------------- /src/sounds/WavDecoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/sounds/WavDecoder.hpp -------------------------------------------------------------------------------- /src/system/AsyncDeleter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/system/AsyncDeleter.cpp -------------------------------------------------------------------------------- /src/system/AsyncDeleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/system/AsyncDeleter.h -------------------------------------------------------------------------------- /src/system/CMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/system/CMutex.h -------------------------------------------------------------------------------- /src/system/CThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/system/CThread.h -------------------------------------------------------------------------------- /src/system/exception_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/system/exception_handler.c -------------------------------------------------------------------------------- /src/system/exception_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/system/exception_handler.h -------------------------------------------------------------------------------- /src/system/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/system/memory.c -------------------------------------------------------------------------------- /src/system/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/system/memory.h -------------------------------------------------------------------------------- /src/utils/Directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/Directory.cpp -------------------------------------------------------------------------------- /src/utils/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/Directory.h -------------------------------------------------------------------------------- /src/utils/FileReplacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/FileReplacer.cpp -------------------------------------------------------------------------------- /src/utils/FileReplacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/FileReplacer.h -------------------------------------------------------------------------------- /src/utils/StringTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/StringTools.cpp -------------------------------------------------------------------------------- /src/utils/StringTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/StringTools.h -------------------------------------------------------------------------------- /src/utils/function_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/function_patcher.cpp -------------------------------------------------------------------------------- /src/utils/function_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/function_patcher.h -------------------------------------------------------------------------------- /src/utils/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/logger.c -------------------------------------------------------------------------------- /src/utils/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/logger.h -------------------------------------------------------------------------------- /src/utils/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/strings.c -------------------------------------------------------------------------------- /src/utils/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/strings.h -------------------------------------------------------------------------------- /src/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/utils.c -------------------------------------------------------------------------------- /src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/utils.h -------------------------------------------------------------------------------- /src/utils/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/xml.c -------------------------------------------------------------------------------- /src/utils/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/utils/xml.h -------------------------------------------------------------------------------- /src/video/CVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/CVideo.cpp -------------------------------------------------------------------------------- /src/video/CVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/CVideo.h -------------------------------------------------------------------------------- /src/video/CursorDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/CursorDrawer.cpp -------------------------------------------------------------------------------- /src/video/CursorDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/CursorDrawer.h -------------------------------------------------------------------------------- /src/video/shaders/ColorShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/ColorShader.cpp -------------------------------------------------------------------------------- /src/video/shaders/ColorShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/ColorShader.h -------------------------------------------------------------------------------- /src/video/shaders/FXAAShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/FXAAShader.cpp -------------------------------------------------------------------------------- /src/video/shaders/FXAAShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/FXAAShader.h -------------------------------------------------------------------------------- /src/video/shaders/FetchShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/FetchShader.h -------------------------------------------------------------------------------- /src/video/shaders/PixelShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/PixelShader.h -------------------------------------------------------------------------------- /src/video/shaders/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/Shader.h -------------------------------------------------------------------------------- /src/video/shaders/Shader3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/Shader3D.cpp -------------------------------------------------------------------------------- /src/video/shaders/Shader3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/Shader3D.h -------------------------------------------------------------------------------- /src/video/shaders/ShaderFractalColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/ShaderFractalColor.cpp -------------------------------------------------------------------------------- /src/video/shaders/ShaderFractalColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/ShaderFractalColor.h -------------------------------------------------------------------------------- /src/video/shaders/Texture2DShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/Texture2DShader.cpp -------------------------------------------------------------------------------- /src/video/shaders/Texture2DShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/Texture2DShader.h -------------------------------------------------------------------------------- /src/video/shaders/VertexShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rw-r-r-0644/HBAS-Portable/HEAD/src/video/shaders/VertexShader.h --------------------------------------------------------------------------------