├── .ci ├── android.sh ├── clang-format.sh ├── license-header.rb ├── linux.sh ├── macos-universal.sh ├── macos.sh ├── pack.sh ├── source.sh ├── transifex.sh └── windows.sh ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── blank_issue_template.yml │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── build.yml │ ├── ci-merge.js │ ├── clear-cache.yml │ ├── format.yml │ ├── license-header.yml │ ├── stale-issues.yml │ └── transifex.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeModules ├── AndroidNdkModules.cmake ├── BuildInstaller.cmake ├── BundleTarget.cmake ├── DownloadExternals.cmake ├── GenerateBuildInfo.cmake ├── GenerateSCMRev.cmake └── aqt_config.ini ├── Doxyfile ├── README.md ├── dist ├── apple │ ├── Info.plist.in │ ├── LaunchScreen.storyboard │ ├── launch_logo.png │ └── lime.icns ├── doc-icon.png ├── dumpkeys │ ├── DumpKeys.gm9 │ └── README.md ├── icon.png ├── languages │ ├── .gitignore │ ├── .tx │ │ └── config │ ├── README.md │ ├── da_DK.ts │ ├── de.ts │ ├── el.ts │ ├── es_ES.ts │ ├── fi.ts │ ├── fr.ts │ ├── hu_HU.ts │ ├── id.ts │ ├── it.ts │ ├── ja_JP.ts │ ├── ko_KR.ts │ ├── lt_LT.ts │ ├── nb.ts │ ├── nl.ts │ ├── pl_PL.ts │ ├── pt_BR.ts │ ├── ro_RO.ts │ ├── ru_RU.ts │ ├── tr_TR.ts │ ├── vi_VN.ts │ ├── zh_CN.ts │ └── zh_TW.ts ├── license.md ├── lime.ico ├── lime.manifest ├── lime.png ├── lime.svg ├── lime.xml ├── lime3ds-room.desktop ├── lime3ds.desktop ├── qt_themes │ ├── colorful │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ ├── connected.png │ │ │ │ ├── connected_notification.png │ │ │ │ ├── disconnected.png │ │ │ │ └── lock.png │ │ │ ├── 256x256 │ │ │ │ └── plus_folder.png │ │ │ ├── 48x48 │ │ │ │ ├── bad_folder.png │ │ │ │ ├── chip.png │ │ │ │ ├── folder.png │ │ │ │ ├── plus.png │ │ │ │ ├── sd_card.png │ │ │ │ └── star.png │ │ │ └── index.theme │ │ └── theme_colorful.qrc │ ├── colorful_dark │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ └── lock.png │ │ │ └── index.theme │ │ └── theme_colorful_dark.qrc │ ├── colorful_midnight_blue │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ └── lock.png │ │ │ └── index.theme │ │ └── theme_colorful_midnight_blue.qrc │ ├── default │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ ├── checked.png │ │ │ │ ├── connected.png │ │ │ │ ├── connected_notification.png │ │ │ │ ├── disconnected.png │ │ │ │ ├── failed.png │ │ │ │ └── lock.png │ │ │ ├── 256x256 │ │ │ │ ├── lime.png │ │ │ │ └── plus_folder.png │ │ │ ├── 48x48 │ │ │ │ ├── bad_folder.png │ │ │ │ ├── chip.png │ │ │ │ ├── folder.png │ │ │ │ ├── no_avatar.png │ │ │ │ ├── plus.png │ │ │ │ ├── sd_card.png │ │ │ │ └── star.png │ │ │ └── index.theme │ │ ├── style.qss │ │ └── theme_default.qrc │ ├── qdarkstyle │ │ ├── LICENSE.md │ │ ├── icons │ │ │ ├── 16x16 │ │ │ │ ├── connected.png │ │ │ │ ├── connected_notification.png │ │ │ │ ├── disconnected.png │ │ │ │ └── lock.png │ │ │ ├── 256x256 │ │ │ │ └── plus_folder.png │ │ │ ├── 48x48 │ │ │ │ ├── bad_folder.png │ │ │ │ ├── chip.png │ │ │ │ ├── folder.png │ │ │ │ ├── no_avatar.png │ │ │ │ ├── plus.png │ │ │ │ ├── sd_card.png │ │ │ │ └── star.png │ │ │ └── index.theme │ │ ├── rc │ │ │ ├── Hmovetoolbar.png │ │ │ ├── Hsepartoolbar.png │ │ │ ├── Vmovetoolbar.png │ │ │ ├── Vsepartoolbar.png │ │ │ ├── branch_closed-on.png │ │ │ ├── branch_closed.png │ │ │ ├── branch_open-on.png │ │ │ ├── branch_open.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_disabled.png │ │ │ ├── checkbox_checked_focus.png │ │ │ ├── checkbox_indeterminate.png │ │ │ ├── checkbox_indeterminate_disabled.png │ │ │ ├── checkbox_indeterminate_focus.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_disabled.png │ │ │ ├── checkbox_unchecked_focus.png │ │ │ ├── close-hover.png │ │ │ ├── close-pressed.png │ │ │ ├── close.png │ │ │ ├── down_arrow.png │ │ │ ├── down_arrow_disabled.png │ │ │ ├── left_arrow.png │ │ │ ├── left_arrow_disabled.png │ │ │ ├── radio_checked.png │ │ │ ├── radio_checked_disabled.png │ │ │ ├── radio_checked_focus.png │ │ │ ├── radio_unchecked.png │ │ │ ├── radio_unchecked_disabled.png │ │ │ ├── radio_unchecked_focus.png │ │ │ ├── right_arrow.png │ │ │ ├── right_arrow_disabled.png │ │ │ ├── sizegrip.png │ │ │ ├── stylesheet-branch-end.png │ │ │ ├── stylesheet-branch-more.png │ │ │ ├── stylesheet-vline.png │ │ │ ├── transparent.png │ │ │ ├── undock.png │ │ │ ├── up_arrow.png │ │ │ └── up_arrow_disabled.png │ │ ├── style.qss │ │ └── theme_qdarkstyle.qrc │ └── qdarkstyle_midnight_blue │ │ ├── LICENSE.rst │ │ ├── icons │ │ ├── 16x16 │ │ │ ├── connected.png │ │ │ ├── connected_notification.png │ │ │ ├── disconnected.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── view-refresh.png │ │ ├── 256x256 │ │ │ └── plus_folder.png │ │ ├── 48x48 │ │ │ ├── bad_folder.png │ │ │ ├── chip.png │ │ │ ├── folder.png │ │ │ ├── no_avatar.png │ │ │ ├── plus.png │ │ │ ├── sd_card.png │ │ │ └── star.png │ │ └── index.theme │ │ ├── rc │ │ ├── Hmovetoolbar.png │ │ ├── Hsepartoolbar.png │ │ ├── Vmovetoolbar.png │ │ ├── Vsepartoolbar.png │ │ ├── arrow_down.png │ │ ├── arrow_down@2x.png │ │ ├── arrow_down_disabled.png │ │ ├── arrow_down_disabled@2x.png │ │ ├── arrow_down_focus.png │ │ ├── arrow_down_focus@2x.png │ │ ├── arrow_down_pressed.png │ │ ├── arrow_down_pressed@2x.png │ │ ├── arrow_left.png │ │ ├── arrow_left@2x.png │ │ ├── arrow_left_disabled.png │ │ ├── arrow_left_disabled@2x.png │ │ ├── arrow_left_focus.png │ │ ├── arrow_left_focus@2x.png │ │ ├── arrow_left_pressed.png │ │ ├── arrow_left_pressed@2x.png │ │ ├── arrow_right.png │ │ ├── arrow_right@2x.png │ │ ├── arrow_right_disabled.png │ │ ├── arrow_right_disabled@2x.png │ │ ├── arrow_right_focus.png │ │ ├── arrow_right_focus@2x.png │ │ ├── arrow_right_pressed.png │ │ ├── arrow_right_pressed@2x.png │ │ ├── arrow_up.png │ │ ├── arrow_up@2x.png │ │ ├── arrow_up_disabled.png │ │ ├── arrow_up_disabled@2x.png │ │ ├── arrow_up_focus.png │ │ ├── arrow_up_focus@2x.png │ │ ├── arrow_up_pressed.png │ │ ├── arrow_up_pressed@2x.png │ │ ├── base_icon.png │ │ ├── base_icon@2x.png │ │ ├── base_icon_disabled.png │ │ ├── base_icon_disabled@2x.png │ │ ├── base_icon_focus.png │ │ ├── base_icon_focus@2x.png │ │ ├── base_icon_pressed.png │ │ ├── base_icon_pressed@2x.png │ │ ├── branch_closed-on.png │ │ ├── branch_closed.png │ │ ├── branch_closed@2x.png │ │ ├── branch_closed_disabled.png │ │ ├── branch_closed_disabled@2x.png │ │ ├── branch_closed_focus.png │ │ ├── branch_closed_focus@2x.png │ │ ├── branch_closed_pressed.png │ │ ├── branch_closed_pressed@2x.png │ │ ├── branch_end.png │ │ ├── branch_end@2x.png │ │ ├── branch_end_disabled.png │ │ ├── branch_end_disabled@2x.png │ │ ├── branch_end_focus.png │ │ ├── branch_end_focus@2x.png │ │ ├── branch_end_pressed.png │ │ ├── branch_end_pressed@2x.png │ │ ├── branch_line.png │ │ ├── branch_line@2x.png │ │ ├── branch_line_disabled.png │ │ ├── branch_line_disabled@2x.png │ │ ├── branch_line_focus.png │ │ ├── branch_line_focus@2x.png │ │ ├── branch_line_pressed.png │ │ ├── branch_line_pressed@2x.png │ │ ├── branch_more.png │ │ ├── branch_more@2x.png │ │ ├── branch_more_disabled.png │ │ ├── branch_more_disabled@2x.png │ │ ├── branch_more_focus.png │ │ ├── branch_more_focus@2x.png │ │ ├── branch_more_pressed.png │ │ ├── branch_more_pressed@2x.png │ │ ├── branch_open-on.png │ │ ├── branch_open.png │ │ ├── branch_open@2x.png │ │ ├── branch_open_disabled.png │ │ ├── branch_open_disabled@2x.png │ │ ├── branch_open_focus.png │ │ ├── branch_open_focus@2x.png │ │ ├── branch_open_pressed.png │ │ ├── branch_open_pressed@2x.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked@2x.png │ │ ├── checkbox_checked_disabled.png │ │ ├── checkbox_checked_disabled@2x.png │ │ ├── checkbox_checked_focus.png │ │ ├── checkbox_checked_focus@2x.png │ │ ├── checkbox_checked_pressed.png │ │ ├── checkbox_checked_pressed@2x.png │ │ ├── checkbox_indeterminate.png │ │ ├── checkbox_indeterminate@2x.png │ │ ├── checkbox_indeterminate_disabled.png │ │ ├── checkbox_indeterminate_disabled@2x.png │ │ ├── checkbox_indeterminate_focus.png │ │ ├── checkbox_indeterminate_focus@2x.png │ │ ├── checkbox_indeterminate_pressed.png │ │ ├── checkbox_indeterminate_pressed@2x.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked@2x.png │ │ ├── checkbox_unchecked_disabled.png │ │ ├── checkbox_unchecked_disabled@2x.png │ │ ├── checkbox_unchecked_focus.png │ │ ├── checkbox_unchecked_focus@2x.png │ │ ├── checkbox_unchecked_pressed.png │ │ ├── checkbox_unchecked_pressed@2x.png │ │ ├── close-hover.png │ │ ├── close-pressed.png │ │ ├── close.png │ │ ├── down_arrow.png │ │ ├── down_arrow_disabled.png │ │ ├── left_arrow.png │ │ ├── left_arrow_disabled.png │ │ ├── line_horizontal.png │ │ ├── line_horizontal@2x.png │ │ ├── line_horizontal_disabled.png │ │ ├── line_horizontal_disabled@2x.png │ │ ├── line_horizontal_focus.png │ │ ├── line_horizontal_focus@2x.png │ │ ├── line_horizontal_pressed.png │ │ ├── line_horizontal_pressed@2x.png │ │ ├── line_vertical.png │ │ ├── line_vertical@2x.png │ │ ├── line_vertical_disabled.png │ │ ├── line_vertical_disabled@2x.png │ │ ├── line_vertical_focus.png │ │ ├── line_vertical_focus@2x.png │ │ ├── line_vertical_pressed.png │ │ ├── line_vertical_pressed@2x.png │ │ ├── radio_checked.png │ │ ├── radio_checked@2x.png │ │ ├── radio_checked_disabled.png │ │ ├── radio_checked_disabled@2x.png │ │ ├── radio_checked_focus.png │ │ ├── radio_checked_focus@2x.png │ │ ├── radio_checked_pressed.png │ │ ├── radio_checked_pressed@2x.png │ │ ├── radio_unchecked.png │ │ ├── radio_unchecked@2x.png │ │ ├── radio_unchecked_disabled.png │ │ ├── radio_unchecked_disabled@2x.png │ │ ├── radio_unchecked_focus.png │ │ ├── radio_unchecked_focus@2x.png │ │ ├── radio_unchecked_pressed.png │ │ ├── radio_unchecked_pressed@2x.png │ │ ├── right_arrow.png │ │ ├── right_arrow_disabled.png │ │ ├── sizegrip.png │ │ ├── stylesheet-branch-end.png │ │ ├── stylesheet-branch-more.png │ │ ├── stylesheet-vline.png │ │ ├── toolbar_move_horizontal.png │ │ ├── toolbar_move_horizontal@2x.png │ │ ├── toolbar_move_horizontal_disabled.png │ │ ├── toolbar_move_horizontal_disabled@2x.png │ │ ├── toolbar_move_horizontal_focus.png │ │ ├── toolbar_move_horizontal_focus@2x.png │ │ ├── toolbar_move_horizontal_pressed.png │ │ ├── toolbar_move_horizontal_pressed@2x.png │ │ ├── toolbar_move_vertical.png │ │ ├── toolbar_move_vertical@2x.png │ │ ├── toolbar_move_vertical_disabled.png │ │ ├── toolbar_move_vertical_disabled@2x.png │ │ ├── toolbar_move_vertical_focus.png │ │ ├── toolbar_move_vertical_focus@2x.png │ │ ├── toolbar_move_vertical_pressed.png │ │ ├── toolbar_move_vertical_pressed@2x.png │ │ ├── toolbar_separator_horizontal.png │ │ ├── toolbar_separator_horizontal@2x.png │ │ ├── toolbar_separator_horizontal_disabled.png │ │ ├── toolbar_separator_horizontal_disabled@2x.png │ │ ├── toolbar_separator_horizontal_focus.png │ │ ├── toolbar_separator_horizontal_focus@2x.png │ │ ├── toolbar_separator_horizontal_pressed.png │ │ ├── toolbar_separator_horizontal_pressed@2x.png │ │ ├── toolbar_separator_vertical.png │ │ ├── toolbar_separator_vertical@2x.png │ │ ├── toolbar_separator_vertical_disabled.png │ │ ├── toolbar_separator_vertical_disabled@2x.png │ │ ├── toolbar_separator_vertical_focus.png │ │ ├── toolbar_separator_vertical_focus@2x.png │ │ ├── toolbar_separator_vertical_pressed.png │ │ ├── toolbar_separator_vertical_pressed@2x.png │ │ ├── transparent.png │ │ ├── transparent@2x.png │ │ ├── transparent_disabled.png │ │ ├── transparent_disabled@2x.png │ │ ├── transparent_focus.png │ │ ├── transparent_focus@2x.png │ │ ├── transparent_pressed.png │ │ ├── transparent_pressed@2x.png │ │ ├── undock.png │ │ ├── up_arrow.png │ │ ├── up_arrow_disabled.png │ │ ├── window_close.png │ │ ├── window_close@2x.png │ │ ├── window_close_disabled.png │ │ ├── window_close_disabled@2x.png │ │ ├── window_close_focus.png │ │ ├── window_close_focus@2x.png │ │ ├── window_close_pressed.png │ │ ├── window_close_pressed@2x.png │ │ ├── window_grip.png │ │ ├── window_grip@2x.png │ │ ├── window_grip_disabled.png │ │ ├── window_grip_disabled@2x.png │ │ ├── window_grip_focus.png │ │ ├── window_grip_focus@2x.png │ │ ├── window_grip_pressed.png │ │ ├── window_grip_pressed@2x.png │ │ ├── window_minimize.png │ │ ├── window_minimize@2x.png │ │ ├── window_minimize_disabled.png │ │ ├── window_minimize_disabled@2x.png │ │ ├── window_minimize_focus.png │ │ ├── window_minimize_focus@2x.png │ │ ├── window_minimize_pressed.png │ │ ├── window_minimize_pressed@2x.png │ │ ├── window_undock.png │ │ ├── window_undock@2x.png │ │ ├── window_undock_disabled.png │ │ ├── window_undock_disabled@2x.png │ │ ├── window_undock_focus.png │ │ ├── window_undock_focus@2x.png │ │ ├── window_undock_pressed.png │ │ └── window_undock_pressed@2x.png │ │ ├── style.qss │ │ └── theme_qdarkstyle_midnight_blue.qrc └── scripting │ └── citra.py ├── externals ├── CMakeLists.txt ├── cmake-modules │ ├── FindCppHttp.cmake │ ├── FindLibUSB.cmake │ ├── FindOpenAL.cmake │ ├── FindSDL2.cmake │ ├── FindSoundTouch.cmake │ ├── Findcryptopp.cmake │ ├── Findinih.cmake │ ├── Findlibenet.cmake │ ├── Findlodepng.cmake │ ├── GetGitRevisionDescription.cmake │ ├── GetGitRevisionDescription.cmake.in │ └── Lime3DSHandleSystemLibs.cmake ├── faad2 │ └── CMakeLists.txt ├── gamemode │ ├── CMakeLists.txt │ └── include │ │ └── gamemode_client.h ├── getopt │ ├── CMakeLists.txt │ ├── getopt.c │ └── getopt.h ├── glad │ ├── CMakeLists.txt │ ├── Readme.md │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c ├── httplib │ ├── README.md │ └── httplib.h ├── inih │ └── CMakeLists.txt ├── json │ ├── README.md │ └── json.hpp ├── libusb │ ├── CMakeLists.txt │ └── config.h.in ├── lodepng │ └── CMakeLists.txt ├── microprofile │ ├── README.md │ ├── microprofile.h │ ├── microprofile_html.h │ └── microprofileui.h ├── open_source_archives │ ├── CMakeLists.txt │ ├── Readme.md │ └── include │ │ ├── bad_word_list.app.romfs.h │ │ ├── country_list.app.romfs.h │ │ ├── mii.app.romfs.h │ │ └── shared_font.app.romfs.h └── sdl2 │ └── CMakeLists.txt ├── hooks └── pre-commit ├── license.txt └── src ├── .clang-format ├── CMakeLists.txt ├── android ├── .gitignore ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── lime3ds │ │ │ └── android │ │ │ ├── Lime3DSApplication.kt │ │ │ ├── NativeLibrary.kt │ │ │ ├── activities │ │ │ └── EmulationActivity.kt │ │ │ ├── adapters │ │ │ ├── DriverAdapter.kt │ │ │ ├── GameAdapter.kt │ │ │ ├── HomeSettingAdapter.kt │ │ │ ├── LicenseAdapter.kt │ │ │ └── SetupAdapter.kt │ │ │ ├── applets │ │ │ ├── MiiSelector.kt │ │ │ └── SoftwareKeyboard.kt │ │ │ ├── camera │ │ │ └── StillImageCameraHelper.kt │ │ │ ├── contracts │ │ │ └── OpenFileResultContract.kt │ │ │ ├── display │ │ │ ├── ScreenAdjustmentUtil.kt │ │ │ └── ScreenLayout.kt │ │ │ ├── features │ │ │ ├── cheats │ │ │ │ ├── model │ │ │ │ │ ├── Cheat.kt │ │ │ │ │ ├── CheatEngine.kt │ │ │ │ │ └── CheatsViewModel.kt │ │ │ │ └── ui │ │ │ │ │ ├── CheatDetailsFragment.kt │ │ │ │ │ ├── CheatListFragment.kt │ │ │ │ │ ├── CheatsActivity.kt │ │ │ │ │ ├── CheatsAdapter.kt │ │ │ │ │ └── CheatsFragment.kt │ │ │ ├── hotkeys │ │ │ │ ├── Hotkey.kt │ │ │ │ └── HotkeyUtility.kt │ │ │ └── settings │ │ │ │ ├── model │ │ │ │ ├── AbstractBooleanSetting.kt │ │ │ │ ├── AbstractFloatSetting.kt │ │ │ │ ├── AbstractIntSetting.kt │ │ │ │ ├── AbstractSetting.kt │ │ │ │ ├── AbstractShortSetting.kt │ │ │ │ ├── AbstractStringSetting.kt │ │ │ │ ├── BooleanSetting.kt │ │ │ │ ├── FloatSetting.kt │ │ │ │ ├── IntSetting.kt │ │ │ │ ├── ScaledFloatSetting.kt │ │ │ │ ├── SettingSection.kt │ │ │ │ ├── Settings.kt │ │ │ │ ├── SettingsViewModel.kt │ │ │ │ ├── StringSetting.kt │ │ │ │ └── view │ │ │ │ │ ├── DateTimeSetting.kt │ │ │ │ │ ├── HeaderSetting.kt │ │ │ │ │ ├── InputBindingSetting.kt │ │ │ │ │ ├── RunnableSetting.kt │ │ │ │ │ ├── SettingsItem.kt │ │ │ │ │ ├── SingleChoiceSetting.kt │ │ │ │ │ ├── SliderSetting.kt │ │ │ │ │ ├── StringInputSetting.kt │ │ │ │ │ ├── StringSingleChoiceSetting.kt │ │ │ │ │ ├── SubmenuSetting.kt │ │ │ │ │ └── SwitchSetting.kt │ │ │ │ ├── ui │ │ │ │ ├── SettingsActivity.kt │ │ │ │ ├── SettingsActivityPresenter.kt │ │ │ │ ├── SettingsActivityView.kt │ │ │ │ ├── SettingsAdapter.kt │ │ │ │ ├── SettingsFragment.kt │ │ │ │ ├── SettingsFragmentPresenter.kt │ │ │ │ ├── SettingsFragmentView.kt │ │ │ │ └── viewholder │ │ │ │ │ ├── DateTimeViewHolder.kt │ │ │ │ │ ├── HeaderViewHolder.kt │ │ │ │ │ ├── InputBindingSettingViewHolder.kt │ │ │ │ │ ├── RunnableViewHolder.kt │ │ │ │ │ ├── SettingViewHolder.kt │ │ │ │ │ ├── SingleChoiceViewHolder.kt │ │ │ │ │ ├── SliderViewHolder.kt │ │ │ │ │ ├── StringInputViewHolder.kt │ │ │ │ │ ├── SubmenuViewHolder.kt │ │ │ │ │ └── SwitchSettingViewHolder.kt │ │ │ │ └── utils │ │ │ │ └── SettingsFile.kt │ │ │ ├── fragments │ │ │ ├── AboutFragment.kt │ │ │ ├── CopyDirProgressDialogFragment.kt │ │ │ ├── DownloadSystemFilesDialogFragment.kt │ │ │ ├── DriverManagerFragment.kt │ │ │ ├── DriversLoadingDialogFragment.kt │ │ │ ├── EmulationFragment.kt │ │ │ ├── GamesFragment.kt │ │ │ ├── HomeSettingsFragment.kt │ │ │ ├── IndeterminateProgressDialogFragment.kt │ │ │ ├── KeyboardDialogFragment.kt │ │ │ ├── LicenseBottomSheetDialogFragment.kt │ │ │ ├── LicensesFragment.kt │ │ │ ├── Lime3DSDirectoryDialogFragment.kt │ │ │ ├── MessageDialogFragment.kt │ │ │ ├── MiiSelectorDialogFragment.kt │ │ │ ├── MotionBottomSheetDialogFragment.kt │ │ │ ├── ResetSettingsDialogFragment.kt │ │ │ ├── SearchFragment.kt │ │ │ ├── SelectUserDirectoryDialogFragment.kt │ │ │ ├── SetupFragment.kt │ │ │ ├── SetupWarningDialogFragment.kt │ │ │ └── SystemFilesFragment.kt │ │ │ ├── model │ │ │ ├── CheapDocument.kt │ │ │ ├── Game.kt │ │ │ ├── GameInfo.kt │ │ │ ├── HomeSetting.kt │ │ │ ├── License.kt │ │ │ └── SetupPage.kt │ │ │ ├── overlay │ │ │ ├── InputOverlay.kt │ │ │ ├── InputOverlayDrawableButton.kt │ │ │ ├── InputOverlayDrawableDpad.kt │ │ │ └── InputOverlayDrawableJoystick.kt │ │ │ ├── ui │ │ │ ├── TwoPaneOnBackPressedCallback.kt │ │ │ └── main │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ThemeProvider.kt │ │ │ ├── utils │ │ │ ├── BiMap.kt │ │ │ ├── CiaInstallWorker.kt │ │ │ ├── ControllerMappingHelper.kt │ │ │ ├── DirectoryInitialization.kt │ │ │ ├── DiskShaderCacheProgress.kt │ │ │ ├── DocumentsTree.kt │ │ │ ├── EmulationLifecycleUtil.kt │ │ │ ├── EmulationMenuSettings.kt │ │ │ ├── FileBrowserHelper.kt │ │ │ ├── FileUtil.kt │ │ │ ├── GameHelper.kt │ │ │ ├── GameIconUtils.kt │ │ │ ├── GpuDriverHelper.kt │ │ │ ├── GpuDriverMetadata.kt │ │ │ ├── InsetsHelper.kt │ │ │ ├── Lime3DSDirectoryHelper.kt │ │ │ ├── Log.kt │ │ │ ├── MemoryUtil.kt │ │ │ ├── PermissionsHandler.kt │ │ │ ├── SerializableHelper.kt │ │ │ ├── SystemSaveGame.kt │ │ │ ├── ThemeUtil.kt │ │ │ └── ViewUtils.kt │ │ │ └── viewmodel │ │ │ ├── DriverViewModel.kt │ │ │ ├── EmulationViewModel.kt │ │ │ ├── GamesViewModel.kt │ │ │ ├── HomeViewModel.kt │ │ │ ├── SystemFilesViewModel.kt │ │ │ └── TaskViewModel.kt │ │ ├── jni │ │ ├── CMakeLists.txt │ │ ├── android_common │ │ │ ├── android_common.cpp │ │ │ └── android_common.h │ │ ├── applets │ │ │ ├── mii_selector.cpp │ │ │ ├── mii_selector.h │ │ │ ├── swkbd.cpp │ │ │ └── swkbd.h │ │ ├── camera │ │ │ ├── ndk_camera.cpp │ │ │ ├── ndk_camera.h │ │ │ ├── still_image_camera.cpp │ │ │ └── still_image_camera.h │ │ ├── cheats │ │ │ ├── cheat.cpp │ │ │ ├── cheat.h │ │ │ └── cheat_engine.cpp │ │ ├── config.cpp │ │ ├── config.h │ │ ├── default_ini.h │ │ ├── emu_window │ │ │ ├── emu_window.cpp │ │ │ ├── emu_window.h │ │ │ ├── emu_window_gl.cpp │ │ │ ├── emu_window_gl.h │ │ │ ├── emu_window_vk.cpp │ │ │ └── emu_window_vk.h │ │ ├── game_info.cpp │ │ ├── game_settings.cpp │ │ ├── game_settings.h │ │ ├── id_cache.cpp │ │ ├── id_cache.h │ │ ├── input_manager.cpp │ │ ├── input_manager.h │ │ ├── native.cpp │ │ ├── native_log.cpp │ │ ├── ndk_motion.cpp │ │ ├── ndk_motion.h │ │ ├── system_save_game.cpp │ │ ├── util.cpp │ │ └── util.h │ │ └── res │ │ ├── anim-ldrtl │ │ ├── anim_pop_settings_fragment_out.xml │ │ └── anim_settings_fragment_in.xml │ │ ├── anim │ │ ├── anim_pop_settings_fragment_out.xml │ │ ├── anim_settings_fragment_in.xml │ │ └── anim_settings_fragment_out.xml │ │ ├── drawable-hdpi │ │ ├── button_a.png │ │ ├── button_a_pressed.png │ │ ├── button_b.png │ │ ├── button_b_pressed.png │ │ ├── button_l.png │ │ ├── button_l_pressed.png │ │ ├── button_r.png │ │ ├── button_r_pressed.png │ │ ├── button_select.png │ │ ├── button_select_pressed.png │ │ ├── button_start.png │ │ ├── button_start_pressed.png │ │ ├── button_swap.png │ │ ├── button_swap_pressed.png │ │ ├── button_x.png │ │ ├── button_x_pressed.png │ │ ├── button_y.png │ │ ├── button_y_pressed.png │ │ ├── button_zl.png │ │ ├── button_zl_pressed.png │ │ ├── button_zr.png │ │ ├── button_zr_pressed.png │ │ ├── dpad.png │ │ ├── dpad_pressed_one_direction.png │ │ ├── dpad_pressed_two_directions.png │ │ ├── ic_stat_notification_logo.png │ │ ├── stick_c.png │ │ ├── stick_c_pressed.png │ │ ├── stick_c_range.png │ │ ├── stick_main.png │ │ ├── stick_main_pressed.png │ │ └── stick_main_range.png │ │ ├── drawable-night │ │ └── no_icon.png │ │ ├── drawable-xhdpi │ │ ├── button_a.png │ │ ├── button_a_pressed.png │ │ ├── button_b.png │ │ ├── button_b_pressed.png │ │ ├── button_l.png │ │ ├── button_l_pressed.png │ │ ├── button_r.png │ │ ├── button_r_pressed.png │ │ ├── button_select.png │ │ ├── button_select_pressed.png │ │ ├── button_start.png │ │ ├── button_start_pressed.png │ │ ├── button_swap.png │ │ ├── button_swap_pressed.png │ │ ├── button_x.png │ │ ├── button_x_pressed.png │ │ ├── button_y.png │ │ ├── button_y_pressed.png │ │ ├── button_zl.png │ │ ├── button_zl_pressed.png │ │ ├── button_zr.png │ │ ├── button_zr_pressed.png │ │ ├── dpad.png │ │ ├── dpad_pressed_one_direction.png │ │ ├── dpad_pressed_two_directions.png │ │ ├── ic_stat_notification_logo.png │ │ ├── stick_c.png │ │ ├── stick_c_pressed.png │ │ ├── stick_c_range.png │ │ ├── stick_main.png │ │ ├── stick_main_pressed.png │ │ └── stick_main_range.png │ │ ├── drawable-xxhdpi │ │ ├── button_a.png │ │ ├── button_a_pressed.png │ │ ├── button_b.png │ │ ├── button_b_pressed.png │ │ ├── button_l.png │ │ ├── button_l_pressed.png │ │ ├── button_r.png │ │ ├── button_r_pressed.png │ │ ├── button_select.png │ │ ├── button_select_pressed.png │ │ ├── button_start.png │ │ ├── button_start_pressed.png │ │ ├── button_swap.png │ │ ├── button_swap_pressed.png │ │ ├── button_x.png │ │ ├── button_x_pressed.png │ │ ├── button_y.png │ │ ├── button_y_pressed.png │ │ ├── button_zl.png │ │ ├── button_zl_pressed.png │ │ ├── button_zr.png │ │ ├── button_zr_pressed.png │ │ ├── dpad.png │ │ ├── dpad_pressed_one_direction.png │ │ ├── dpad_pressed_two_directions.png │ │ ├── ic_stat_notification_logo.png │ │ ├── stick_c.png │ │ ├── stick_c_pressed.png │ │ ├── stick_c_range.png │ │ ├── stick_main.png │ │ ├── stick_main_pressed.png │ │ └── stick_main_range.png │ │ ├── drawable-xxxhdpi │ │ ├── button_a.png │ │ ├── button_a_pressed.png │ │ ├── button_b.png │ │ ├── button_b_pressed.png │ │ ├── button_l.png │ │ ├── button_l_pressed.png │ │ ├── button_r.png │ │ ├── button_r_pressed.png │ │ ├── button_select.png │ │ ├── button_select_pressed.png │ │ ├── button_start.png │ │ ├── button_start_pressed.png │ │ ├── button_swap.png │ │ ├── button_swap_pressed.png │ │ ├── button_x.png │ │ ├── button_x_pressed.png │ │ ├── button_y.png │ │ ├── button_y_pressed.png │ │ ├── button_zl.png │ │ ├── button_zl_pressed.png │ │ ├── button_zr.png │ │ ├── button_zr_pressed.png │ │ ├── dpad.png │ │ ├── dpad_pressed_one_direction.png │ │ ├── dpad_pressed_two_directions.png │ │ ├── stick_c.png │ │ ├── stick_c_pressed.png │ │ ├── stick_c_range.png │ │ ├── stick_main.png │ │ ├── stick_main_pressed.png │ │ └── stick_main_range.png │ │ ├── drawable │ │ ├── button_home.xml │ │ ├── button_home_pressed.xml │ │ ├── gamelist_divider.xml │ │ ├── ic_add.xml │ │ ├── ic_arrow_forward.xml │ │ ├── ic_audio.xml │ │ ├── ic_back.xml │ │ ├── ic_camera.xml │ │ ├── ic_camera_settings.xml │ │ ├── ic_check.xml │ │ ├── ic_clear.xml │ │ ├── ic_code.xml │ │ ├── ic_controller.xml │ │ ├── ic_controller_outline.xml │ │ ├── ic_controls_settings.xml │ │ ├── ic_delete.xml │ │ ├── ic_discord.xml │ │ ├── ic_exit.xml │ │ ├── ic_fit_screen.xml │ │ ├── ic_folder.xml │ │ ├── ic_general_settings.xml │ │ ├── ic_github.xml │ │ ├── ic_graphics.xml │ │ ├── ic_heart.xml │ │ ├── ic_home.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_install.xml │ │ ├── ic_install_driver.xml │ │ ├── ic_lime.xml │ │ ├── ic_lime_full.xml │ │ ├── ic_lime_monochrome.xml │ │ ├── ic_lock.xml │ │ ├── ic_microphone.xml │ │ ├── ic_more.xml │ │ ├── ic_network.xml │ │ ├── ic_nfc.xml │ │ ├── ic_notification.xml │ │ ├── ic_palette.xml │ │ ├── ic_pause.xml │ │ ├── ic_play.xml │ │ ├── ic_portrait_fit_screen.xml │ │ ├── ic_restore.xml │ │ ├── ic_save.xml │ │ ├── ic_search.xml │ │ ├── ic_settings.xml │ │ ├── ic_settings_outline.xml │ │ ├── ic_share.xml │ │ ├── ic_shortcut.xml │ │ ├── ic_splitscreen.xml │ │ ├── ic_system_settings.xml │ │ ├── ic_system_update.xml │ │ ├── ic_unlocked.xml │ │ ├── ic_website.xml │ │ ├── no_icon.png │ │ ├── popup_background.xml │ │ ├── selector_controller.xml │ │ └── selector_settings.xml │ │ ├── layout-ldrtl │ │ └── list_item_cheat.xml │ │ ├── layout-w600dp │ │ ├── activity_main.xml │ │ ├── fragment_setup.xml │ │ └── fragment_system_files.xml │ │ ├── layout │ │ ├── activity_cheats.xml │ │ ├── activity_emulation.xml │ │ ├── activity_main.xml │ │ ├── activity_settings.xml │ │ ├── card_driver_option.xml │ │ ├── card_game.xml │ │ ├── card_home_option.xml │ │ ├── dialog_about_game.xml │ │ ├── dialog_checkbox.xml │ │ ├── dialog_copy_dir.xml │ │ ├── dialog_input.xml │ │ ├── dialog_license.xml │ │ ├── dialog_lime3ds_directory.xml │ │ ├── dialog_progress_bar.xml │ │ ├── dialog_slider.xml │ │ ├── dialog_software_keyboard.xml │ │ ├── fragment_about.xml │ │ ├── fragment_cheat_details.xml │ │ ├── fragment_cheat_list.xml │ │ ├── fragment_cheats.xml │ │ ├── fragment_driver_manager.xml │ │ ├── fragment_emulation.xml │ │ ├── fragment_games.xml │ │ ├── fragment_home_settings.xml │ │ ├── fragment_licenses.xml │ │ ├── fragment_search.xml │ │ ├── fragment_settings.xml │ │ ├── fragment_setup.xml │ │ ├── fragment_system_files.xml │ │ ├── header_in_game.xml │ │ ├── list_item_cheat.xml │ │ ├── list_item_setting.xml │ │ ├── list_item_setting_checkbox.xml │ │ ├── list_item_setting_switch.xml │ │ ├── list_item_settings_header.xml │ │ ├── page_setup.xml │ │ └── premium_item_setting.xml │ │ ├── menu-w600dp │ │ └── menu_navigation.xml │ │ ├── menu │ │ ├── menu_amiibo_options.xml │ │ ├── menu_in_game.xml │ │ ├── menu_landscape_screen_layout.xml │ │ ├── menu_navigation.xml │ │ ├── menu_overlay_options.xml │ │ ├── menu_portrait_screen_layout.xml │ │ ├── menu_savestates.xml │ │ └── menu_settings.xml │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── navigation │ │ ├── cheats_navigation.xml │ │ ├── emulation_navigation.xml │ │ └── home_navigation.xml │ │ ├── resources.properties │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-nb │ │ └── strings.xml │ │ ├── values-night-v31 │ │ └── themes.xml │ │ ├── values-night │ │ ├── lime_colors.xml │ │ └── themes.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-v29 │ │ └── themes.xml │ │ ├── values-v31 │ │ └── themes.xml │ │ ├── values-w600dp │ │ ├── bools.xml │ │ ├── dimens.xml │ │ └── integers.xml │ │ ├── values-zh │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── bools.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── integers.xml │ │ ├── licenses.xml │ │ ├── lime3ds_colors.xml │ │ ├── lime_colors.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ └── xml │ │ └── game_mode_config.xml ├── build.gradle.kts ├── code-style-java.xml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── audio_core ├── CMakeLists.txt ├── audio_types.h ├── codec.cpp ├── codec.h ├── cubeb_input.cpp ├── cubeb_input.h ├── cubeb_sink.cpp ├── cubeb_sink.h ├── dsp_interface.cpp ├── dsp_interface.h ├── hle │ ├── aac_decoder.cpp │ ├── aac_decoder.h │ ├── common.h │ ├── decoder.cpp │ ├── decoder.h │ ├── filter.cpp │ ├── filter.h │ ├── hle.cpp │ ├── hle.h │ ├── mixers.cpp │ ├── mixers.h │ ├── shared_memory.h │ ├── source.cpp │ └── source.h ├── input.h ├── input_details.cpp ├── input_details.h ├── interpolate.cpp ├── interpolate.h ├── lle │ ├── lle.cpp │ └── lle.h ├── null_input.h ├── null_sink.h ├── openal_input.cpp ├── openal_input.h ├── openal_sink.cpp ├── openal_sink.h ├── precompiled_headers.h ├── sdl2_sink.cpp ├── sdl2_sink.h ├── sink.h ├── sink_details.cpp ├── sink_details.h ├── static_input.cpp ├── static_input.h ├── time_stretch.cpp └── time_stretch.h ├── common ├── CMakeLists.txt ├── aarch64 │ ├── cpu_detect.cpp │ ├── cpu_detect.h │ ├── oaknut_abi.h │ └── oaknut_util.h ├── alignment.h ├── android_storage.cpp ├── android_storage.h ├── announce_multiplayer_room.h ├── apple_authorization.cpp ├── apple_authorization.h ├── arch.h ├── archives.h ├── assert.h ├── atomic_ops.h ├── bit_field.h ├── bit_set.h ├── bounded_threadsafe_queue.h ├── cityhash.cpp ├── cityhash.h ├── color.h ├── common_funcs.h ├── common_paths.h ├── common_precompiled_headers.h ├── common_types.h ├── construct.h ├── detached_tasks.cpp ├── detached_tasks.h ├── dynamic_library │ ├── dynamic_library.cpp │ ├── dynamic_library.h │ ├── ffmpeg.cpp │ └── ffmpeg.h ├── error.cpp ├── error.h ├── expected.h ├── file_util.cpp ├── file_util.h ├── hash.h ├── linux │ ├── gamemode.cpp │ └── gamemode.h ├── literals.h ├── logging │ ├── backend.cpp │ ├── backend.h │ ├── filter.cpp │ ├── filter.h │ ├── formatter.h │ ├── log.h │ ├── log_entry.h │ ├── text_formatter.cpp │ ├── text_formatter.h │ └── types.h ├── math_util.h ├── memory_detect.cpp ├── memory_detect.h ├── memory_ref.cpp ├── memory_ref.h ├── microprofile.cpp ├── microprofile.h ├── microprofileui.h ├── param_package.cpp ├── param_package.h ├── polyfill_thread.h ├── precompiled_headers.h ├── quaternion.h ├── ring_buffer.h ├── scm_rev.cpp.in ├── scm_rev.h ├── scope_exit.h ├── serialization │ ├── atomic.h │ ├── boost_discrete_interval.hpp │ ├── boost_flat_set.h │ ├── boost_interval_set.hpp │ ├── boost_small_vector.hpp │ ├── boost_std_variant.hpp │ └── boost_vector.hpp ├── settings.cpp ├── settings.h ├── slot_vector.h ├── static_lru_cache.h ├── string_literal.h ├── string_util.cpp ├── string_util.h ├── swap.h ├── telemetry.cpp ├── telemetry.h ├── texture.cpp ├── texture.h ├── thread.cpp ├── thread.h ├── thread_queue_list.h ├── thread_worker.h ├── threadsafe_queue.h ├── timer.cpp ├── timer.h ├── unique_function.h ├── vector_math.h ├── web_result.h ├── x64 │ ├── cpu_detect.cpp │ ├── cpu_detect.h │ ├── xbyak_abi.h │ └── xbyak_util.h ├── zstd_compression.cpp └── zstd_compression.h ├── core ├── 3ds.h ├── CMakeLists.txt ├── arm │ ├── arm_interface.h │ ├── dynarmic │ │ ├── arm_dynarmic.cpp │ │ ├── arm_dynarmic.h │ │ ├── arm_dynarmic_cp15.cpp │ │ ├── arm_dynarmic_cp15.h │ │ ├── arm_exclusive_monitor.cpp │ │ ├── arm_exclusive_monitor.h │ │ ├── arm_tick_counts.cpp │ │ └── arm_tick_counts.h │ ├── dyncom │ │ ├── arm_dyncom.cpp │ │ ├── arm_dyncom.h │ │ ├── arm_dyncom_dec.cpp │ │ ├── arm_dyncom_dec.h │ │ ├── arm_dyncom_interpreter.cpp │ │ ├── arm_dyncom_interpreter.h │ │ ├── arm_dyncom_run.h │ │ ├── arm_dyncom_thumb.cpp │ │ ├── arm_dyncom_thumb.h │ │ ├── arm_dyncom_trans.cpp │ │ └── arm_dyncom_trans.h │ ├── exclusive_monitor.cpp │ ├── exclusive_monitor.h │ └── skyeye_common │ │ ├── arm_regformat.h │ │ ├── armstate.cpp │ │ ├── armstate.h │ │ ├── armsupp.cpp │ │ ├── armsupp.h │ │ └── vfp │ │ ├── asm_vfp.h │ │ ├── vfp.cpp │ │ ├── vfp.h │ │ ├── vfp_helper.h │ │ ├── vfpdouble.cpp │ │ ├── vfpinstr.cpp │ │ └── vfpsingle.cpp ├── cheats │ ├── cheat_base.cpp │ ├── cheat_base.h │ ├── cheats.cpp │ ├── cheats.h │ ├── gateway_cheat.cpp │ └── gateway_cheat.h ├── core.cpp ├── core.h ├── core_timing.cpp ├── core_timing.h ├── dumping │ ├── backend.cpp │ ├── backend.h │ ├── ffmpeg_backend.cpp │ └── ffmpeg_backend.h ├── file_sys │ ├── archive_artic.cpp │ ├── archive_artic.h │ ├── archive_backend.cpp │ ├── archive_backend.h │ ├── archive_extsavedata.cpp │ ├── archive_extsavedata.h │ ├── archive_ncch.cpp │ ├── archive_ncch.h │ ├── archive_other_savedata.cpp │ ├── archive_other_savedata.h │ ├── archive_savedata.cpp │ ├── archive_savedata.h │ ├── archive_sdmc.cpp │ ├── archive_sdmc.h │ ├── archive_sdmcwriteonly.cpp │ ├── archive_sdmcwriteonly.h │ ├── archive_selfncch.cpp │ ├── archive_selfncch.h │ ├── archive_source_sd_savedata.cpp │ ├── archive_source_sd_savedata.h │ ├── archive_systemsavedata.cpp │ ├── archive_systemsavedata.h │ ├── artic_cache.cpp │ ├── artic_cache.h │ ├── cia_common.h │ ├── cia_container.cpp │ ├── cia_container.h │ ├── delay_generator.cpp │ ├── delay_generator.h │ ├── directory_backend.h │ ├── disk_archive.cpp │ ├── disk_archive.h │ ├── errors.h │ ├── file_backend.h │ ├── ivfc_archive.cpp │ ├── ivfc_archive.h │ ├── layered_fs.cpp │ ├── layered_fs.h │ ├── ncch_container.cpp │ ├── ncch_container.h │ ├── patch.cpp │ ├── patch.h │ ├── path_parser.cpp │ ├── path_parser.h │ ├── plugin_3gx.cpp │ ├── plugin_3gx.h │ ├── plugin_3gx_bootloader.h │ ├── romfs_reader.cpp │ ├── romfs_reader.h │ ├── savedata_archive.cpp │ ├── savedata_archive.h │ ├── secure_value_backend.cpp │ ├── secure_value_backend.h │ ├── secure_value_backend_artic.cpp │ ├── secure_value_backend_artic.h │ ├── seed_db.cpp │ ├── seed_db.h │ ├── ticket.cpp │ ├── ticket.h │ ├── title_metadata.cpp │ └── title_metadata.h ├── frontend │ ├── applets │ │ ├── default_applets.cpp │ │ ├── default_applets.h │ │ ├── mii_selector.cpp │ │ ├── mii_selector.h │ │ ├── swkbd.cpp │ │ └── swkbd.h │ ├── camera │ │ ├── blank_camera.cpp │ │ ├── blank_camera.h │ │ ├── factory.cpp │ │ ├── factory.h │ │ ├── interface.cpp │ │ └── interface.h │ ├── emu_window.cpp │ ├── emu_window.h │ ├── framebuffer_layout.cpp │ ├── framebuffer_layout.h │ ├── image_interface.cpp │ ├── image_interface.h │ └── input.h ├── gdbstub │ ├── gdbstub.cpp │ ├── gdbstub.h │ ├── hio.cpp │ └── hio.h ├── global.h ├── hle │ ├── applets │ │ ├── applet.cpp │ │ ├── applet.h │ │ ├── erreula.cpp │ │ ├── erreula.h │ │ ├── mii_selector.cpp │ │ ├── mii_selector.h │ │ ├── mint.cpp │ │ ├── mint.h │ │ ├── swkbd.cpp │ │ └── swkbd.h │ ├── ipc.h │ ├── ipc_helpers.h │ ├── kernel │ │ ├── address_arbiter.cpp │ │ ├── address_arbiter.h │ │ ├── client_port.cpp │ │ ├── client_port.h │ │ ├── client_session.cpp │ │ ├── client_session.h │ │ ├── config_mem.cpp │ │ ├── config_mem.h │ │ ├── errors.h │ │ ├── event.cpp │ │ ├── event.h │ │ ├── handle_table.cpp │ │ ├── handle_table.h │ │ ├── hle_ipc.cpp │ │ ├── hle_ipc.h │ │ ├── ipc.cpp │ │ ├── ipc.h │ │ ├── ipc_debugger │ │ │ ├── recorder.cpp │ │ │ └── recorder.h │ │ ├── kernel.cpp │ │ ├── kernel.h │ │ ├── memory.cpp │ │ ├── memory.h │ │ ├── mutex.cpp │ │ ├── mutex.h │ │ ├── object.cpp │ │ ├── object.h │ │ ├── process.cpp │ │ ├── process.h │ │ ├── resource_limit.cpp │ │ ├── resource_limit.h │ │ ├── semaphore.cpp │ │ ├── semaphore.h │ │ ├── server_port.cpp │ │ ├── server_port.h │ │ ├── server_session.cpp │ │ ├── server_session.h │ │ ├── session.cpp │ │ ├── session.h │ │ ├── shared_memory.cpp │ │ ├── shared_memory.h │ │ ├── shared_page.cpp │ │ ├── shared_page.h │ │ ├── svc.cpp │ │ ├── svc.h │ │ ├── svc_wrapper.h │ │ ├── thread.cpp │ │ ├── thread.h │ │ ├── timer.cpp │ │ ├── timer.h │ │ ├── vm_manager.cpp │ │ ├── vm_manager.h │ │ ├── wait_object.cpp │ │ └── wait_object.h │ ├── mii.cpp │ ├── mii.h │ ├── result.h │ ├── romfs.cpp │ ├── romfs.h │ └── service │ │ ├── ac │ │ ├── ac.cpp │ │ ├── ac.h │ │ ├── ac_i.cpp │ │ ├── ac_i.h │ │ ├── ac_u.cpp │ │ └── ac_u.h │ │ ├── act │ │ ├── act.cpp │ │ ├── act.h │ │ ├── act_a.cpp │ │ ├── act_a.h │ │ ├── act_u.cpp │ │ └── act_u.h │ │ ├── am │ │ ├── am.cpp │ │ ├── am.h │ │ ├── am_app.cpp │ │ ├── am_app.h │ │ ├── am_net.cpp │ │ ├── am_net.h │ │ ├── am_sys.cpp │ │ ├── am_sys.h │ │ ├── am_u.cpp │ │ └── am_u.h │ │ ├── apt │ │ ├── applet_manager.cpp │ │ ├── applet_manager.h │ │ ├── apt.cpp │ │ ├── apt.h │ │ ├── apt_a.cpp │ │ ├── apt_a.h │ │ ├── apt_s.cpp │ │ ├── apt_s.h │ │ ├── apt_u.cpp │ │ ├── apt_u.h │ │ ├── bcfnt │ │ │ ├── bcfnt.cpp │ │ │ └── bcfnt.h │ │ ├── errors.h │ │ ├── ns.cpp │ │ ├── ns.h │ │ ├── ns_c.cpp │ │ ├── ns_c.h │ │ ├── ns_s.cpp │ │ └── ns_s.h │ │ ├── boss │ │ ├── boss.cpp │ │ ├── boss.h │ │ ├── boss_p.cpp │ │ ├── boss_p.h │ │ ├── boss_u.cpp │ │ ├── boss_u.h │ │ ├── online_service.cpp │ │ └── online_service.h │ │ ├── cam │ │ ├── cam.cpp │ │ ├── cam.h │ │ ├── cam_c.cpp │ │ ├── cam_c.h │ │ ├── cam_params.h │ │ ├── cam_q.cpp │ │ ├── cam_q.h │ │ ├── cam_s.cpp │ │ ├── cam_s.h │ │ ├── cam_u.cpp │ │ ├── cam_u.h │ │ ├── y2r_u.cpp │ │ └── y2r_u.h │ │ ├── cecd │ │ ├── cecd.cpp │ │ ├── cecd.h │ │ ├── cecd_ndm.cpp │ │ ├── cecd_ndm.h │ │ ├── cecd_s.cpp │ │ ├── cecd_s.h │ │ ├── cecd_u.cpp │ │ └── cecd_u.h │ │ ├── cfg │ │ ├── cfg.cpp │ │ ├── cfg.h │ │ ├── cfg_defaults.cpp │ │ ├── cfg_defaults.h │ │ ├── cfg_i.cpp │ │ ├── cfg_i.h │ │ ├── cfg_nor.cpp │ │ ├── cfg_nor.h │ │ ├── cfg_s.cpp │ │ ├── cfg_s.h │ │ ├── cfg_u.cpp │ │ └── cfg_u.h │ │ ├── csnd │ │ ├── csnd_snd.cpp │ │ └── csnd_snd.h │ │ ├── dlp │ │ ├── dlp.cpp │ │ ├── dlp.h │ │ ├── dlp_clnt.cpp │ │ ├── dlp_clnt.h │ │ ├── dlp_fkcl.cpp │ │ ├── dlp_fkcl.h │ │ ├── dlp_srvr.cpp │ │ └── dlp_srvr.h │ │ ├── dsp │ │ ├── dsp_dsp.cpp │ │ └── dsp_dsp.h │ │ ├── err │ │ ├── err_f.cpp │ │ └── err_f.h │ │ ├── frd │ │ ├── frd.cpp │ │ ├── frd.h │ │ ├── frd_a.cpp │ │ ├── frd_a.h │ │ ├── frd_u.cpp │ │ └── frd_u.h │ │ ├── fs │ │ ├── archive.cpp │ │ ├── archive.h │ │ ├── directory.cpp │ │ ├── directory.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── fs_user.cpp │ │ └── fs_user.h │ │ ├── gsp │ │ ├── gsp.cpp │ │ ├── gsp.h │ │ ├── gsp_command.h │ │ ├── gsp_gpu.cpp │ │ ├── gsp_gpu.h │ │ ├── gsp_interrupt.h │ │ ├── gsp_lcd.cpp │ │ └── gsp_lcd.h │ │ ├── hid │ │ ├── hid.cpp │ │ ├── hid.h │ │ ├── hid_spvr.cpp │ │ ├── hid_spvr.h │ │ ├── hid_user.cpp │ │ └── hid_user.h │ │ ├── http │ │ ├── http_c.cpp │ │ └── http_c.h │ │ ├── ir │ │ ├── extra_hid.cpp │ │ ├── extra_hid.h │ │ ├── ir.cpp │ │ ├── ir.h │ │ ├── ir_rst.cpp │ │ ├── ir_rst.h │ │ ├── ir_u.cpp │ │ ├── ir_u.h │ │ ├── ir_user.cpp │ │ └── ir_user.h │ │ ├── ldr_ro │ │ ├── cro_helper.cpp │ │ ├── cro_helper.h │ │ ├── ldr_ro.cpp │ │ └── ldr_ro.h │ │ ├── mcu │ │ ├── mcu.cpp │ │ ├── mcu.h │ │ ├── mcu_hwc.cpp │ │ └── mcu_hwc.h │ │ ├── mic │ │ ├── mic_u.cpp │ │ └── mic_u.h │ │ ├── mvd │ │ ├── mvd.cpp │ │ ├── mvd.h │ │ ├── mvd_std.cpp │ │ └── mvd_std.h │ │ ├── ndm │ │ ├── ndm_u.cpp │ │ └── ndm_u.h │ │ ├── news │ │ ├── news.cpp │ │ ├── news.h │ │ ├── news_s.cpp │ │ ├── news_s.h │ │ ├── news_u.cpp │ │ └── news_u.h │ │ ├── nfc │ │ ├── amiibo_crypto.cpp │ │ ├── amiibo_crypto.h │ │ ├── nfc.cpp │ │ ├── nfc.h │ │ ├── nfc_device.cpp │ │ ├── nfc_device.h │ │ ├── nfc_m.cpp │ │ ├── nfc_m.h │ │ ├── nfc_results.h │ │ ├── nfc_types.h │ │ ├── nfc_u.cpp │ │ └── nfc_u.h │ │ ├── nim │ │ ├── nim.cpp │ │ ├── nim.h │ │ ├── nim_aoc.cpp │ │ ├── nim_aoc.h │ │ ├── nim_s.cpp │ │ ├── nim_s.h │ │ ├── nim_u.cpp │ │ └── nim_u.h │ │ ├── nwm │ │ ├── nwm.cpp │ │ ├── nwm.h │ │ ├── nwm_cec.cpp │ │ ├── nwm_cec.h │ │ ├── nwm_ext.cpp │ │ ├── nwm_ext.h │ │ ├── nwm_inf.cpp │ │ ├── nwm_inf.h │ │ ├── nwm_sap.cpp │ │ ├── nwm_sap.h │ │ ├── nwm_soc.cpp │ │ ├── nwm_soc.h │ │ ├── nwm_tst.cpp │ │ ├── nwm_tst.h │ │ ├── nwm_uds.cpp │ │ ├── nwm_uds.h │ │ ├── uds_beacon.cpp │ │ ├── uds_beacon.h │ │ ├── uds_connection.cpp │ │ ├── uds_connection.h │ │ ├── uds_data.cpp │ │ └── uds_data.h │ │ ├── plgldr │ │ ├── plgldr.cpp │ │ └── plgldr.h │ │ ├── pm │ │ ├── pm.cpp │ │ ├── pm.h │ │ ├── pm_app.cpp │ │ ├── pm_app.h │ │ ├── pm_dbg.cpp │ │ └── pm_dbg.h │ │ ├── ps │ │ ├── ps_ps.cpp │ │ └── ps_ps.h │ │ ├── ptm │ │ ├── ptm.cpp │ │ ├── ptm.h │ │ ├── ptm_gets.cpp │ │ ├── ptm_gets.h │ │ ├── ptm_play.cpp │ │ ├── ptm_play.h │ │ ├── ptm_sets.cpp │ │ ├── ptm_sets.h │ │ ├── ptm_sysm.cpp │ │ ├── ptm_sysm.h │ │ ├── ptm_u.cpp │ │ └── ptm_u.h │ │ ├── pxi │ │ ├── dev.cpp │ │ ├── dev.h │ │ ├── pxi.cpp │ │ └── pxi.h │ │ ├── qtm │ │ ├── qtm.cpp │ │ ├── qtm.h │ │ ├── qtm_c.cpp │ │ ├── qtm_c.h │ │ ├── qtm_s.cpp │ │ ├── qtm_s.h │ │ ├── qtm_sp.cpp │ │ ├── qtm_sp.h │ │ ├── qtm_u.cpp │ │ └── qtm_u.h │ │ ├── service.cpp │ │ ├── service.h │ │ ├── sm │ │ ├── sm.cpp │ │ ├── sm.h │ │ ├── srv.cpp │ │ └── srv.h │ │ ├── soc │ │ ├── soc_u.cpp │ │ └── soc_u.h │ │ └── ssl │ │ ├── ssl_c.cpp │ │ └── ssl_c.h ├── hw │ ├── aes │ │ ├── arithmetic128.cpp │ │ ├── arithmetic128.h │ │ ├── ccm.cpp │ │ ├── ccm.h │ │ ├── key.cpp │ │ └── key.h │ ├── rsa │ │ ├── rsa.cpp │ │ └── rsa.h │ ├── y2r.cpp │ └── y2r.h ├── loader │ ├── 3dsx.cpp │ ├── 3dsx.h │ ├── artic.cpp │ ├── artic.h │ ├── elf.cpp │ ├── elf.h │ ├── loader.cpp │ ├── loader.h │ ├── ncch.cpp │ ├── ncch.h │ ├── smdh.cpp │ └── smdh.h ├── memory.cpp ├── memory.h ├── movie.cpp ├── movie.h ├── nus_download.cpp ├── nus_download.h ├── perf_stats.cpp ├── perf_stats.h ├── precompiled_headers.h ├── rpc │ ├── packet.cpp │ ├── packet.h │ ├── rpc_server.cpp │ ├── rpc_server.h │ ├── server.cpp │ ├── server.h │ ├── udp_server.cpp │ └── udp_server.h ├── savestate.cpp ├── savestate.h ├── savestate_data.h ├── system_titles.cpp ├── system_titles.h ├── telemetry_session.cpp ├── telemetry_session.h └── tracer │ ├── citrace.h │ ├── recorder.cpp │ └── recorder.h ├── input_common ├── CMakeLists.txt ├── analog_from_button.cpp ├── analog_from_button.h ├── gcadapter │ ├── gc_adapter.cpp │ ├── gc_adapter.h │ ├── gc_poller.cpp │ └── gc_poller.h ├── keyboard.cpp ├── keyboard.h ├── main.cpp ├── main.h ├── motion_emu.cpp ├── motion_emu.h ├── precompiled_headers.h ├── sdl │ ├── sdl.cpp │ ├── sdl.h │ ├── sdl_impl.cpp │ └── sdl_impl.h ├── touch_from_button.cpp ├── touch_from_button.h └── udp │ ├── client.cpp │ ├── client.h │ ├── protocol.cpp │ ├── protocol.h │ ├── udp.cpp │ └── udp.h ├── installer └── lime3ds.nsi ├── lime ├── CMakeLists.txt ├── common_strings.h ├── lime.rc ├── main.cpp └── precompiled_headers.h ├── lime_qt ├── CMakeLists.txt ├── aboutdialog.cpp ├── aboutdialog.h ├── aboutdialog.ui ├── applets │ ├── mii_selector.cpp │ ├── mii_selector.h │ ├── swkbd.cpp │ └── swkbd.h ├── bootmanager.cpp ├── bootmanager.h ├── camera │ ├── camera_util.cpp │ ├── camera_util.h │ ├── qt_camera_base.cpp │ ├── qt_camera_base.h │ ├── qt_multimedia_camera.cpp │ ├── qt_multimedia_camera.h │ ├── still_image_camera.cpp │ └── still_image_camera.h ├── compatibility_list.cpp ├── compatibility_list.h ├── configuration │ ├── config.cpp │ ├── config.h │ ├── configuration_shared.cpp │ ├── configuration_shared.h │ ├── configure.ui │ ├── configure_audio.cpp │ ├── configure_audio.h │ ├── configure_audio.ui │ ├── configure_camera.cpp │ ├── configure_camera.h │ ├── configure_camera.ui │ ├── configure_cheats.cpp │ ├── configure_cheats.h │ ├── configure_cheats.ui │ ├── configure_debug.cpp │ ├── configure_debug.h │ ├── configure_debug.ui │ ├── configure_dialog.cpp │ ├── configure_dialog.h │ ├── configure_enhancements.cpp │ ├── configure_enhancements.h │ ├── configure_enhancements.ui │ ├── configure_general.cpp │ ├── configure_general.h │ ├── configure_general.ui │ ├── configure_graphics.cpp │ ├── configure_graphics.h │ ├── configure_graphics.ui │ ├── configure_hotkeys.cpp │ ├── configure_hotkeys.h │ ├── configure_hotkeys.ui │ ├── configure_input.cpp │ ├── configure_input.h │ ├── configure_input.ui │ ├── configure_layout.cpp │ ├── configure_layout.h │ ├── configure_layout.ui │ ├── configure_motion_touch.cpp │ ├── configure_motion_touch.h │ ├── configure_motion_touch.ui │ ├── configure_per_game.cpp │ ├── configure_per_game.h │ ├── configure_per_game.ui │ ├── configure_storage.cpp │ ├── configure_storage.h │ ├── configure_storage.ui │ ├── configure_system.cpp │ ├── configure_system.h │ ├── configure_system.ui │ ├── configure_touch_from_button.cpp │ ├── configure_touch_from_button.h │ ├── configure_touch_from_button.ui │ ├── configure_touch_widget.h │ ├── configure_ui.cpp │ ├── configure_ui.h │ ├── configure_ui.ui │ ├── configure_web.cpp │ ├── configure_web.h │ └── configure_web.ui ├── debugger │ ├── console.cpp │ ├── console.h │ ├── graphics │ │ ├── graphics.cpp │ │ ├── graphics.h │ │ ├── graphics_breakpoint_observer.cpp │ │ ├── graphics_breakpoint_observer.h │ │ ├── graphics_breakpoints.cpp │ │ ├── graphics_breakpoints.h │ │ ├── graphics_breakpoints_p.h │ │ ├── graphics_cmdlists.cpp │ │ ├── graphics_cmdlists.h │ │ ├── graphics_surface.cpp │ │ ├── graphics_surface.h │ │ ├── graphics_tracing.cpp │ │ ├── graphics_tracing.h │ │ ├── graphics_vertex_shader.cpp │ │ └── graphics_vertex_shader.h │ ├── ipc │ │ ├── record_dialog.cpp │ │ ├── record_dialog.h │ │ ├── record_dialog.ui │ │ ├── recorder.cpp │ │ ├── recorder.h │ │ └── recorder.ui │ ├── lle_service_modules.cpp │ ├── lle_service_modules.h │ ├── profiler.cpp │ ├── profiler.h │ ├── registers.cpp │ ├── registers.h │ ├── registers.ui │ ├── wait_tree.cpp │ └── wait_tree.h ├── discord.h ├── discord_impl.cpp ├── discord_impl.h ├── dumping │ ├── dumping_dialog.cpp │ ├── dumping_dialog.h │ ├── dumping_dialog.ui │ ├── option_set_dialog.cpp │ ├── option_set_dialog.h │ ├── option_set_dialog.ui │ ├── options_dialog.cpp │ ├── options_dialog.h │ └── options_dialog.ui ├── game_list.cpp ├── game_list.h ├── game_list_p.h ├── game_list_worker.cpp ├── game_list_worker.h ├── hotkeys.cpp ├── hotkeys.h ├── lime_qt.cpp ├── lime_qt.h ├── loading_screen.cpp ├── loading_screen.h ├── loading_screen.ui ├── main.ui ├── movie │ ├── movie_play_dialog.cpp │ ├── movie_play_dialog.h │ ├── movie_play_dialog.ui │ ├── movie_record_dialog.cpp │ ├── movie_record_dialog.h │ └── movie_record_dialog.ui ├── multiplayer │ ├── chat_room.cpp │ ├── chat_room.h │ ├── chat_room.ui │ ├── client_room.cpp │ ├── client_room.h │ ├── client_room.ui │ ├── direct_connect.cpp │ ├── direct_connect.h │ ├── direct_connect.ui │ ├── host_room.cpp │ ├── host_room.h │ ├── host_room.ui │ ├── lobby.cpp │ ├── lobby.h │ ├── lobby.ui │ ├── lobby_p.h │ ├── message.cpp │ ├── message.h │ ├── moderation_dialog.cpp │ ├── moderation_dialog.h │ ├── moderation_dialog.ui │ ├── state.cpp │ ├── state.h │ └── validation.h ├── play_time_manager.cpp ├── play_time_manager.h ├── precompiled_headers.h ├── qt_image_interface.cpp ├── qt_image_interface.h ├── uisettings.cpp ├── uisettings.h ├── updater │ ├── updater.cpp │ ├── updater.h │ └── updater_p.h └── util │ ├── clickable_label.cpp │ ├── clickable_label.h │ ├── graphics_device_info.cpp │ ├── graphics_device_info.h │ ├── sequence_dialog │ ├── sequence_dialog.cpp │ └── sequence_dialog.h │ ├── spinbox.cpp │ ├── spinbox.h │ ├── util.cpp │ └── util.h ├── lime_room ├── CMakeLists.txt ├── lime_room.cpp ├── lime_room.rc └── precompiled_headers.h ├── lime_sdl ├── CMakeLists.txt ├── config.cpp ├── config.h ├── default_ini.h ├── emu_window │ ├── emu_window_sdl2.cpp │ ├── emu_window_sdl2.h │ ├── emu_window_sdl2_gl.cpp │ ├── emu_window_sdl2_gl.h │ ├── emu_window_sdl2_sw.cpp │ ├── emu_window_sdl2_sw.h │ ├── emu_window_sdl2_vk.cpp │ └── emu_window_sdl2_vk.h ├── lime_sdl.cpp ├── lime_sdl.h ├── precompiled_headers.h └── resource.h ├── network ├── CMakeLists.txt ├── announce_multiplayer_session.cpp ├── announce_multiplayer_session.h ├── artic_base │ ├── artic_base_client.cpp │ ├── artic_base_client.h │ └── artic_base_common.h ├── network.cpp ├── network.h ├── network_settings.cpp ├── network_settings.h ├── packet.cpp ├── packet.h ├── precompiled_headers.h ├── room.cpp ├── room.h ├── room_member.cpp ├── room_member.h ├── socket_manager.cpp ├── socket_manager.h ├── verify_user.cpp └── verify_user.h ├── tests ├── CMakeLists.txt ├── audio_core │ ├── audio_fixures.h │ ├── decoder_tests.cpp │ ├── hle │ │ ├── hle.cpp │ │ └── source.cpp │ ├── lle │ │ └── lle.cpp │ └── merryhime_3ds_audio │ │ ├── README.md │ │ ├── audio_test_biquad_filter.cpp │ │ └── merry_audio │ │ ├── merry_audio.cpp │ │ ├── merry_audio.h │ │ ├── service_fixture.cpp │ │ └── service_fixture.h ├── common │ ├── bit_field.cpp │ ├── file_util.cpp │ └── param_package.cpp ├── core │ ├── core_timing.cpp │ ├── file_sys │ │ └── path_parser.cpp │ ├── hle │ │ └── kernel │ │ │ └── hle_ipc.cpp │ └── memory │ │ ├── memory.cpp │ │ └── vm_manager.cpp ├── precompiled_headers.h └── video_core │ └── shader │ └── shader_jit_compiler.cpp ├── video_core ├── CMakeLists.txt ├── custom_textures │ ├── custom_format.cpp │ ├── custom_format.h │ ├── custom_tex_manager.cpp │ ├── custom_tex_manager.h │ ├── material.cpp │ └── material.h ├── debug_utils │ ├── debug_utils.cpp │ └── debug_utils.h ├── gpu.cpp ├── gpu.h ├── gpu_debugger.h ├── host_shaders │ ├── CMakeLists.txt │ ├── StringShaderHeader.cmake │ ├── format_reinterpreter │ │ ├── d24s8_to_rgba8.frag │ │ ├── fullscreen_quad.vert │ │ ├── rgba4_to_rgb5a1.frag │ │ └── vulkan_d24s8_to_rgba8.comp │ ├── full_screen_triangle.vert │ ├── opengl_present.frag │ ├── opengl_present.vert │ ├── opengl_present_anaglyph.frag │ ├── opengl_present_interlaced.frag │ ├── source_shader.h.in │ ├── texture_filtering │ │ ├── bicubic.frag │ │ ├── mmpx.frag │ │ ├── refine.frag │ │ ├── scale_force.frag │ │ ├── tex_coord.vert │ │ ├── x_gradient.frag │ │ ├── xbrz_freescale.frag │ │ └── y_gradient.frag │ ├── vulkan_blit_depth_stencil.frag │ ├── vulkan_depth_to_buffer.comp │ ├── vulkan_present.frag │ ├── vulkan_present.vert │ ├── vulkan_present_anaglyph.frag │ └── vulkan_present_interlaced.frag ├── pica │ ├── geometry_pipeline.cpp │ ├── geometry_pipeline.h │ ├── output_vertex.cpp │ ├── output_vertex.h │ ├── packed_attribute.h │ ├── pica_core.cpp │ ├── pica_core.h │ ├── primitive_assembly.cpp │ ├── primitive_assembly.h │ ├── regs_external.h │ ├── regs_framebuffer.h │ ├── regs_internal.cpp │ ├── regs_internal.h │ ├── regs_lcd.h │ ├── regs_lighting.h │ ├── regs_pipeline.h │ ├── regs_rasterizer.h │ ├── regs_shader.h │ ├── regs_texturing.h │ ├── shader_setup.cpp │ ├── shader_setup.h │ ├── shader_unit.cpp │ ├── shader_unit.h │ ├── vertex_loader.cpp │ └── vertex_loader.h ├── pica_types.h ├── precompiled_headers.h ├── rasterizer_accelerated.cpp ├── rasterizer_accelerated.h ├── rasterizer_cache │ ├── framebuffer_base.h │ ├── pixel_format.cpp │ ├── pixel_format.h │ ├── rasterizer_cache.cpp │ ├── rasterizer_cache.h │ ├── rasterizer_cache_base.h │ ├── sampler_params.h │ ├── slot_id.h │ ├── surface_base.cpp │ ├── surface_base.h │ ├── surface_params.cpp │ ├── surface_params.h │ ├── texture_codec.h │ ├── texture_cube.h │ ├── utils.cpp │ └── utils.h ├── rasterizer_interface.h ├── renderer_base.cpp ├── renderer_base.h ├── renderer_opengl │ ├── frame_dumper_opengl.cpp │ ├── frame_dumper_opengl.h │ ├── gl_blit_helper.cpp │ ├── gl_blit_helper.h │ ├── gl_driver.cpp │ ├── gl_driver.h │ ├── gl_rasterizer.cpp │ ├── gl_rasterizer.h │ ├── gl_rasterizer_cache.cpp │ ├── gl_resource_manager.cpp │ ├── gl_resource_manager.h │ ├── gl_shader_disk_cache.cpp │ ├── gl_shader_disk_cache.h │ ├── gl_shader_manager.cpp │ ├── gl_shader_manager.h │ ├── gl_shader_util.cpp │ ├── gl_shader_util.h │ ├── gl_state.cpp │ ├── gl_state.h │ ├── gl_stream_buffer.cpp │ ├── gl_stream_buffer.h │ ├── gl_texture_mailbox.cpp │ ├── gl_texture_mailbox.h │ ├── gl_texture_runtime.cpp │ ├── gl_texture_runtime.h │ ├── gl_vars.cpp │ ├── gl_vars.h │ ├── pica_to_gl.h │ ├── post_processing_opengl.cpp │ ├── post_processing_opengl.h │ ├── renderer_opengl.cpp │ └── renderer_opengl.h ├── renderer_software │ ├── renderer_software.cpp │ ├── renderer_software.h │ ├── sw_blitter.cpp │ ├── sw_blitter.h │ ├── sw_clipper.cpp │ ├── sw_clipper.h │ ├── sw_framebuffer.cpp │ ├── sw_framebuffer.h │ ├── sw_lighting.cpp │ ├── sw_lighting.h │ ├── sw_proctex.cpp │ ├── sw_proctex.h │ ├── sw_rasterizer.cpp │ ├── sw_rasterizer.h │ ├── sw_texturing.cpp │ └── sw_texturing.h ├── renderer_vulkan │ ├── pica_to_vk.h │ ├── renderer_vulkan.cpp │ ├── renderer_vulkan.h │ ├── vk_blit_helper.cpp │ ├── vk_blit_helper.h │ ├── vk_common.cpp │ ├── vk_common.h │ ├── vk_descriptor_update_queue.cpp │ ├── vk_descriptor_update_queue.h │ ├── vk_graphics_pipeline.cpp │ ├── vk_graphics_pipeline.h │ ├── vk_instance.cpp │ ├── vk_instance.h │ ├── vk_master_semaphore.cpp │ ├── vk_master_semaphore.h │ ├── vk_memory_util.cpp │ ├── vk_memory_util.h │ ├── vk_pipeline_cache.cpp │ ├── vk_pipeline_cache.h │ ├── vk_platform.cpp │ ├── vk_platform.h │ ├── vk_present_window.cpp │ ├── vk_present_window.h │ ├── vk_rasterizer.cpp │ ├── vk_rasterizer.h │ ├── vk_rasterizer_cache.cpp │ ├── vk_render_manager.cpp │ ├── vk_render_manager.h │ ├── vk_resource_pool.cpp │ ├── vk_resource_pool.h │ ├── vk_scheduler.cpp │ ├── vk_scheduler.h │ ├── vk_shader_util.cpp │ ├── vk_shader_util.h │ ├── vk_stream_buffer.cpp │ ├── vk_stream_buffer.h │ ├── vk_swapchain.cpp │ ├── vk_swapchain.h │ ├── vk_texture_runtime.cpp │ └── vk_texture_runtime.h ├── shader │ ├── debug_data.h │ ├── generator │ │ ├── glsl_fs_shader_gen.cpp │ │ ├── glsl_fs_shader_gen.h │ │ ├── glsl_shader_decompiler.cpp │ │ ├── glsl_shader_decompiler.h │ │ ├── glsl_shader_gen.cpp │ │ ├── glsl_shader_gen.h │ │ ├── pica_fs_config.cpp │ │ ├── pica_fs_config.h │ │ ├── profile.h │ │ ├── shader_gen.cpp │ │ ├── shader_gen.h │ │ ├── shader_uniforms.cpp │ │ ├── shader_uniforms.h │ │ ├── spv_fs_shader_gen.cpp │ │ └── spv_fs_shader_gen.h │ ├── shader.cpp │ ├── shader.h │ ├── shader_interpreter.cpp │ ├── shader_interpreter.h │ ├── shader_jit.cpp │ ├── shader_jit.h │ ├── shader_jit_a64_compiler.cpp │ ├── shader_jit_a64_compiler.h │ ├── shader_jit_x64_compiler.cpp │ └── shader_jit_x64_compiler.h ├── texture │ ├── etc1.cpp │ ├── etc1.h │ ├── texture_decode.cpp │ └── texture_decode.h ├── utils.h ├── video_core.cpp └── video_core.h └── web_service ├── CMakeLists.txt ├── announce_room_json.cpp ├── announce_room_json.h ├── precompiled_headers.h ├── telemetry_json.cpp ├── telemetry_json.h ├── verify_login.cpp ├── verify_login.h ├── verify_user_jwt.cpp ├── verify_user_jwt.h ├── web_backend.cpp └── web_backend.h /.ci/android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/android.sh -------------------------------------------------------------------------------- /.ci/clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/clang-format.sh -------------------------------------------------------------------------------- /.ci/license-header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/license-header.rb -------------------------------------------------------------------------------- /.ci/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/linux.sh -------------------------------------------------------------------------------- /.ci/macos-universal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/macos-universal.sh -------------------------------------------------------------------------------- /.ci/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/macos.sh -------------------------------------------------------------------------------- /.ci/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/pack.sh -------------------------------------------------------------------------------- /.ci/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/source.sh -------------------------------------------------------------------------------- /.ci/transifex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/transifex.sh -------------------------------------------------------------------------------- /.ci/windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.ci/windows.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci-merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.github/workflows/ci-merge.js -------------------------------------------------------------------------------- /.github/workflows/clear-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.github/workflows/clear-cache.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/license-header.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.github/workflows/license-header.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.github/workflows/stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/transifex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.github/workflows/transifex.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/AndroidNdkModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/CMakeModules/AndroidNdkModules.cmake -------------------------------------------------------------------------------- /CMakeModules/BuildInstaller.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/CMakeModules/BuildInstaller.cmake -------------------------------------------------------------------------------- /CMakeModules/BundleTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/CMakeModules/BundleTarget.cmake -------------------------------------------------------------------------------- /CMakeModules/DownloadExternals.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/CMakeModules/DownloadExternals.cmake -------------------------------------------------------------------------------- /CMakeModules/GenerateBuildInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/CMakeModules/GenerateBuildInfo.cmake -------------------------------------------------------------------------------- /CMakeModules/GenerateSCMRev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/CMakeModules/GenerateSCMRev.cmake -------------------------------------------------------------------------------- /CMakeModules/aqt_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/CMakeModules/aqt_config.ini -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/Doxyfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/README.md -------------------------------------------------------------------------------- /dist/apple/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/apple/Info.plist.in -------------------------------------------------------------------------------- /dist/apple/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/apple/LaunchScreen.storyboard -------------------------------------------------------------------------------- /dist/apple/launch_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/apple/launch_logo.png -------------------------------------------------------------------------------- /dist/apple/lime.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/apple/lime.icns -------------------------------------------------------------------------------- /dist/doc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/doc-icon.png -------------------------------------------------------------------------------- /dist/dumpkeys/DumpKeys.gm9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/dumpkeys/DumpKeys.gm9 -------------------------------------------------------------------------------- /dist/dumpkeys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/dumpkeys/README.md -------------------------------------------------------------------------------- /dist/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/icon.png -------------------------------------------------------------------------------- /dist/languages/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore the source language file 2 | en.ts 3 | 4 | -------------------------------------------------------------------------------- /dist/languages/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/.tx/config -------------------------------------------------------------------------------- /dist/languages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/README.md -------------------------------------------------------------------------------- /dist/languages/da_DK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/da_DK.ts -------------------------------------------------------------------------------- /dist/languages/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/de.ts -------------------------------------------------------------------------------- /dist/languages/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/el.ts -------------------------------------------------------------------------------- /dist/languages/es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/es_ES.ts -------------------------------------------------------------------------------- /dist/languages/fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/fi.ts -------------------------------------------------------------------------------- /dist/languages/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/fr.ts -------------------------------------------------------------------------------- /dist/languages/hu_HU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/hu_HU.ts -------------------------------------------------------------------------------- /dist/languages/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/id.ts -------------------------------------------------------------------------------- /dist/languages/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/it.ts -------------------------------------------------------------------------------- /dist/languages/ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/ja_JP.ts -------------------------------------------------------------------------------- /dist/languages/ko_KR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/ko_KR.ts -------------------------------------------------------------------------------- /dist/languages/lt_LT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/lt_LT.ts -------------------------------------------------------------------------------- /dist/languages/nb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/nb.ts -------------------------------------------------------------------------------- /dist/languages/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/nl.ts -------------------------------------------------------------------------------- /dist/languages/pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/pl_PL.ts -------------------------------------------------------------------------------- /dist/languages/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/pt_BR.ts -------------------------------------------------------------------------------- /dist/languages/ro_RO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/ro_RO.ts -------------------------------------------------------------------------------- /dist/languages/ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/ru_RU.ts -------------------------------------------------------------------------------- /dist/languages/tr_TR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/tr_TR.ts -------------------------------------------------------------------------------- /dist/languages/vi_VN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/vi_VN.ts -------------------------------------------------------------------------------- /dist/languages/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/zh_CN.ts -------------------------------------------------------------------------------- /dist/languages/zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/languages/zh_TW.ts -------------------------------------------------------------------------------- /dist/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/license.md -------------------------------------------------------------------------------- /dist/lime.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/lime.ico -------------------------------------------------------------------------------- /dist/lime.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/lime.manifest -------------------------------------------------------------------------------- /dist/lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/lime.png -------------------------------------------------------------------------------- /dist/lime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/lime.svg -------------------------------------------------------------------------------- /dist/lime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/lime.xml -------------------------------------------------------------------------------- /dist/lime3ds-room.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/lime3ds-room.desktop -------------------------------------------------------------------------------- /dist/lime3ds.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/lime3ds.desktop -------------------------------------------------------------------------------- /dist/qt_themes/default/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/qt_themes/default/style.qss -------------------------------------------------------------------------------- /dist/qt_themes/qdarkstyle/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/qt_themes/qdarkstyle/LICENSE.md -------------------------------------------------------------------------------- /dist/qt_themes/qdarkstyle/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/qt_themes/qdarkstyle/style.qss -------------------------------------------------------------------------------- /dist/scripting/citra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/dist/scripting/citra.py -------------------------------------------------------------------------------- /externals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/CMakeLists.txt -------------------------------------------------------------------------------- /externals/faad2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/faad2/CMakeLists.txt -------------------------------------------------------------------------------- /externals/gamemode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/gamemode/CMakeLists.txt -------------------------------------------------------------------------------- /externals/getopt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/getopt/CMakeLists.txt -------------------------------------------------------------------------------- /externals/getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/getopt/getopt.c -------------------------------------------------------------------------------- /externals/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/getopt/getopt.h -------------------------------------------------------------------------------- /externals/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/glad/CMakeLists.txt -------------------------------------------------------------------------------- /externals/glad/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/glad/Readme.md -------------------------------------------------------------------------------- /externals/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/glad/include/glad/glad.h -------------------------------------------------------------------------------- /externals/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/glad/src/glad.c -------------------------------------------------------------------------------- /externals/httplib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/httplib/README.md -------------------------------------------------------------------------------- /externals/httplib/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/httplib/httplib.h -------------------------------------------------------------------------------- /externals/inih/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/inih/CMakeLists.txt -------------------------------------------------------------------------------- /externals/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/json/README.md -------------------------------------------------------------------------------- /externals/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/json/json.hpp -------------------------------------------------------------------------------- /externals/libusb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/libusb/CMakeLists.txt -------------------------------------------------------------------------------- /externals/libusb/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/libusb/config.h.in -------------------------------------------------------------------------------- /externals/lodepng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/lodepng/CMakeLists.txt -------------------------------------------------------------------------------- /externals/microprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/microprofile/README.md -------------------------------------------------------------------------------- /externals/microprofile/microprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/microprofile/microprofile.h -------------------------------------------------------------------------------- /externals/sdl2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/externals/sdl2/CMakeLists.txt -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/license.txt -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/.gitignore -------------------------------------------------------------------------------- /src/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/app/build.gradle.kts -------------------------------------------------------------------------------- /src/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /src/android/app/src/main/jni/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/app/src/main/jni/config.h -------------------------------------------------------------------------------- /src/android/app/src/main/jni/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/app/src/main/jni/util.cpp -------------------------------------------------------------------------------- /src/android/app/src/main/jni/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/app/src/main/jni/util.h -------------------------------------------------------------------------------- /src/android/app/src/main/res/menu/menu_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/android/app/src/main/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en-US 2 | -------------------------------------------------------------------------------- /src/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/build.gradle.kts -------------------------------------------------------------------------------- /src/android/code-style-java.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/code-style-java.xml -------------------------------------------------------------------------------- /src/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/gradle.properties -------------------------------------------------------------------------------- /src/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/gradlew -------------------------------------------------------------------------------- /src/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/gradlew.bat -------------------------------------------------------------------------------- /src/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/android/settings.gradle.kts -------------------------------------------------------------------------------- /src/audio_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/CMakeLists.txt -------------------------------------------------------------------------------- /src/audio_core/audio_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/audio_types.h -------------------------------------------------------------------------------- /src/audio_core/codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/codec.cpp -------------------------------------------------------------------------------- /src/audio_core/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/codec.h -------------------------------------------------------------------------------- /src/audio_core/cubeb_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/cubeb_input.cpp -------------------------------------------------------------------------------- /src/audio_core/cubeb_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/cubeb_input.h -------------------------------------------------------------------------------- /src/audio_core/cubeb_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/cubeb_sink.cpp -------------------------------------------------------------------------------- /src/audio_core/cubeb_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/cubeb_sink.h -------------------------------------------------------------------------------- /src/audio_core/dsp_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/dsp_interface.cpp -------------------------------------------------------------------------------- /src/audio_core/dsp_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/dsp_interface.h -------------------------------------------------------------------------------- /src/audio_core/hle/aac_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/aac_decoder.cpp -------------------------------------------------------------------------------- /src/audio_core/hle/aac_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/aac_decoder.h -------------------------------------------------------------------------------- /src/audio_core/hle/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/common.h -------------------------------------------------------------------------------- /src/audio_core/hle/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/decoder.cpp -------------------------------------------------------------------------------- /src/audio_core/hle/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/decoder.h -------------------------------------------------------------------------------- /src/audio_core/hle/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/filter.cpp -------------------------------------------------------------------------------- /src/audio_core/hle/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/filter.h -------------------------------------------------------------------------------- /src/audio_core/hle/hle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/hle.cpp -------------------------------------------------------------------------------- /src/audio_core/hle/hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/hle.h -------------------------------------------------------------------------------- /src/audio_core/hle/mixers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/mixers.cpp -------------------------------------------------------------------------------- /src/audio_core/hle/mixers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/mixers.h -------------------------------------------------------------------------------- /src/audio_core/hle/shared_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/shared_memory.h -------------------------------------------------------------------------------- /src/audio_core/hle/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/source.cpp -------------------------------------------------------------------------------- /src/audio_core/hle/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/hle/source.h -------------------------------------------------------------------------------- /src/audio_core/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/input.h -------------------------------------------------------------------------------- /src/audio_core/input_details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/input_details.cpp -------------------------------------------------------------------------------- /src/audio_core/input_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/input_details.h -------------------------------------------------------------------------------- /src/audio_core/interpolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/interpolate.cpp -------------------------------------------------------------------------------- /src/audio_core/interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/interpolate.h -------------------------------------------------------------------------------- /src/audio_core/lle/lle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/lle/lle.cpp -------------------------------------------------------------------------------- /src/audio_core/lle/lle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/lle/lle.h -------------------------------------------------------------------------------- /src/audio_core/null_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/null_input.h -------------------------------------------------------------------------------- /src/audio_core/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/null_sink.h -------------------------------------------------------------------------------- /src/audio_core/openal_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/openal_input.cpp -------------------------------------------------------------------------------- /src/audio_core/openal_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/openal_input.h -------------------------------------------------------------------------------- /src/audio_core/openal_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/openal_sink.cpp -------------------------------------------------------------------------------- /src/audio_core/openal_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/openal_sink.h -------------------------------------------------------------------------------- /src/audio_core/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/precompiled_headers.h -------------------------------------------------------------------------------- /src/audio_core/sdl2_sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/sdl2_sink.cpp -------------------------------------------------------------------------------- /src/audio_core/sdl2_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/sdl2_sink.h -------------------------------------------------------------------------------- /src/audio_core/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/sink.h -------------------------------------------------------------------------------- /src/audio_core/sink_details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/sink_details.cpp -------------------------------------------------------------------------------- /src/audio_core/sink_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/sink_details.h -------------------------------------------------------------------------------- /src/audio_core/static_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/static_input.cpp -------------------------------------------------------------------------------- /src/audio_core/static_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/static_input.h -------------------------------------------------------------------------------- /src/audio_core/time_stretch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/time_stretch.cpp -------------------------------------------------------------------------------- /src/audio_core/time_stretch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/audio_core/time_stretch.h -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/aarch64/cpu_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/aarch64/cpu_detect.cpp -------------------------------------------------------------------------------- /src/common/aarch64/cpu_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/aarch64/cpu_detect.h -------------------------------------------------------------------------------- /src/common/aarch64/oaknut_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/aarch64/oaknut_abi.h -------------------------------------------------------------------------------- /src/common/aarch64/oaknut_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/aarch64/oaknut_util.h -------------------------------------------------------------------------------- /src/common/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/alignment.h -------------------------------------------------------------------------------- /src/common/android_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/android_storage.cpp -------------------------------------------------------------------------------- /src/common/android_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/android_storage.h -------------------------------------------------------------------------------- /src/common/apple_authorization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/apple_authorization.cpp -------------------------------------------------------------------------------- /src/common/apple_authorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/apple_authorization.h -------------------------------------------------------------------------------- /src/common/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/arch.h -------------------------------------------------------------------------------- /src/common/archives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/archives.h -------------------------------------------------------------------------------- /src/common/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/assert.h -------------------------------------------------------------------------------- /src/common/atomic_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/atomic_ops.h -------------------------------------------------------------------------------- /src/common/bit_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/bit_field.h -------------------------------------------------------------------------------- /src/common/bit_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/bit_set.h -------------------------------------------------------------------------------- /src/common/bounded_threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/bounded_threadsafe_queue.h -------------------------------------------------------------------------------- /src/common/cityhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/cityhash.cpp -------------------------------------------------------------------------------- /src/common/cityhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/cityhash.h -------------------------------------------------------------------------------- /src/common/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/color.h -------------------------------------------------------------------------------- /src/common/common_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/common_funcs.h -------------------------------------------------------------------------------- /src/common/common_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/common_paths.h -------------------------------------------------------------------------------- /src/common/common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/common_types.h -------------------------------------------------------------------------------- /src/common/construct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/construct.h -------------------------------------------------------------------------------- /src/common/detached_tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/detached_tasks.cpp -------------------------------------------------------------------------------- /src/common/detached_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/detached_tasks.h -------------------------------------------------------------------------------- /src/common/dynamic_library/ffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/dynamic_library/ffmpeg.cpp -------------------------------------------------------------------------------- /src/common/dynamic_library/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/dynamic_library/ffmpeg.h -------------------------------------------------------------------------------- /src/common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/error.cpp -------------------------------------------------------------------------------- /src/common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/error.h -------------------------------------------------------------------------------- /src/common/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/expected.h -------------------------------------------------------------------------------- /src/common/file_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/file_util.cpp -------------------------------------------------------------------------------- /src/common/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/file_util.h -------------------------------------------------------------------------------- /src/common/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/hash.h -------------------------------------------------------------------------------- /src/common/linux/gamemode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/linux/gamemode.cpp -------------------------------------------------------------------------------- /src/common/linux/gamemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/linux/gamemode.h -------------------------------------------------------------------------------- /src/common/literals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/literals.h -------------------------------------------------------------------------------- /src/common/logging/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/backend.cpp -------------------------------------------------------------------------------- /src/common/logging/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/backend.h -------------------------------------------------------------------------------- /src/common/logging/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/filter.cpp -------------------------------------------------------------------------------- /src/common/logging/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/filter.h -------------------------------------------------------------------------------- /src/common/logging/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/formatter.h -------------------------------------------------------------------------------- /src/common/logging/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/log.h -------------------------------------------------------------------------------- /src/common/logging/log_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/log_entry.h -------------------------------------------------------------------------------- /src/common/logging/text_formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/text_formatter.cpp -------------------------------------------------------------------------------- /src/common/logging/text_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/text_formatter.h -------------------------------------------------------------------------------- /src/common/logging/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/logging/types.h -------------------------------------------------------------------------------- /src/common/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/math_util.h -------------------------------------------------------------------------------- /src/common/memory_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/memory_detect.cpp -------------------------------------------------------------------------------- /src/common/memory_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/memory_detect.h -------------------------------------------------------------------------------- /src/common/memory_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/memory_ref.cpp -------------------------------------------------------------------------------- /src/common/memory_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/memory_ref.h -------------------------------------------------------------------------------- /src/common/microprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/microprofile.cpp -------------------------------------------------------------------------------- /src/common/microprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/microprofile.h -------------------------------------------------------------------------------- /src/common/microprofileui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/microprofileui.h -------------------------------------------------------------------------------- /src/common/param_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/param_package.cpp -------------------------------------------------------------------------------- /src/common/param_package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/param_package.h -------------------------------------------------------------------------------- /src/common/polyfill_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/polyfill_thread.h -------------------------------------------------------------------------------- /src/common/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/precompiled_headers.h -------------------------------------------------------------------------------- /src/common/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/quaternion.h -------------------------------------------------------------------------------- /src/common/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/ring_buffer.h -------------------------------------------------------------------------------- /src/common/scm_rev.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/scm_rev.cpp.in -------------------------------------------------------------------------------- /src/common/scm_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/scm_rev.h -------------------------------------------------------------------------------- /src/common/scope_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/scope_exit.h -------------------------------------------------------------------------------- /src/common/serialization/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/serialization/atomic.h -------------------------------------------------------------------------------- /src/common/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/settings.cpp -------------------------------------------------------------------------------- /src/common/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/settings.h -------------------------------------------------------------------------------- /src/common/slot_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/slot_vector.h -------------------------------------------------------------------------------- /src/common/static_lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/static_lru_cache.h -------------------------------------------------------------------------------- /src/common/string_literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/string_literal.h -------------------------------------------------------------------------------- /src/common/string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/string_util.cpp -------------------------------------------------------------------------------- /src/common/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/string_util.h -------------------------------------------------------------------------------- /src/common/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/swap.h -------------------------------------------------------------------------------- /src/common/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/telemetry.cpp -------------------------------------------------------------------------------- /src/common/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/telemetry.h -------------------------------------------------------------------------------- /src/common/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/texture.cpp -------------------------------------------------------------------------------- /src/common/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/texture.h -------------------------------------------------------------------------------- /src/common/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/thread.cpp -------------------------------------------------------------------------------- /src/common/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/thread.h -------------------------------------------------------------------------------- /src/common/thread_queue_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/thread_queue_list.h -------------------------------------------------------------------------------- /src/common/thread_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/thread_worker.h -------------------------------------------------------------------------------- /src/common/threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/threadsafe_queue.h -------------------------------------------------------------------------------- /src/common/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/timer.cpp -------------------------------------------------------------------------------- /src/common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/timer.h -------------------------------------------------------------------------------- /src/common/unique_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/unique_function.h -------------------------------------------------------------------------------- /src/common/vector_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/vector_math.h -------------------------------------------------------------------------------- /src/common/web_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/web_result.h -------------------------------------------------------------------------------- /src/common/x64/cpu_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/x64/cpu_detect.cpp -------------------------------------------------------------------------------- /src/common/x64/cpu_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/x64/cpu_detect.h -------------------------------------------------------------------------------- /src/common/x64/xbyak_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/x64/xbyak_abi.h -------------------------------------------------------------------------------- /src/common/x64/xbyak_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/x64/xbyak_util.h -------------------------------------------------------------------------------- /src/common/zstd_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/zstd_compression.cpp -------------------------------------------------------------------------------- /src/common/zstd_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/common/zstd_compression.h -------------------------------------------------------------------------------- /src/core/3ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/3ds.h -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/arm/arm_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/arm_interface.h -------------------------------------------------------------------------------- /src/core/arm/dynarmic/arm_dynarmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/dynarmic/arm_dynarmic.h -------------------------------------------------------------------------------- /src/core/arm/dyncom/arm_dyncom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/dyncom/arm_dyncom.cpp -------------------------------------------------------------------------------- /src/core/arm/dyncom/arm_dyncom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/dyncom/arm_dyncom.h -------------------------------------------------------------------------------- /src/core/arm/dyncom/arm_dyncom_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/dyncom/arm_dyncom_dec.h -------------------------------------------------------------------------------- /src/core/arm/dyncom/arm_dyncom_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/dyncom/arm_dyncom_run.h -------------------------------------------------------------------------------- /src/core/arm/exclusive_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/exclusive_monitor.cpp -------------------------------------------------------------------------------- /src/core/arm/exclusive_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/exclusive_monitor.h -------------------------------------------------------------------------------- /src/core/arm/skyeye_common/armstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/skyeye_common/armstate.h -------------------------------------------------------------------------------- /src/core/arm/skyeye_common/armsupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/skyeye_common/armsupp.h -------------------------------------------------------------------------------- /src/core/arm/skyeye_common/vfp/vfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/arm/skyeye_common/vfp/vfp.h -------------------------------------------------------------------------------- /src/core/cheats/cheat_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/cheats/cheat_base.cpp -------------------------------------------------------------------------------- /src/core/cheats/cheat_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/cheats/cheat_base.h -------------------------------------------------------------------------------- /src/core/cheats/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/cheats/cheats.cpp -------------------------------------------------------------------------------- /src/core/cheats/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/cheats/cheats.h -------------------------------------------------------------------------------- /src/core/cheats/gateway_cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/cheats/gateway_cheat.cpp -------------------------------------------------------------------------------- /src/core/cheats/gateway_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/cheats/gateway_cheat.h -------------------------------------------------------------------------------- /src/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/core.cpp -------------------------------------------------------------------------------- /src/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/core.h -------------------------------------------------------------------------------- /src/core/core_timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/core_timing.cpp -------------------------------------------------------------------------------- /src/core/core_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/core_timing.h -------------------------------------------------------------------------------- /src/core/dumping/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/dumping/backend.cpp -------------------------------------------------------------------------------- /src/core/dumping/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/dumping/backend.h -------------------------------------------------------------------------------- /src/core/dumping/ffmpeg_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/dumping/ffmpeg_backend.cpp -------------------------------------------------------------------------------- /src/core/dumping/ffmpeg_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/dumping/ffmpeg_backend.h -------------------------------------------------------------------------------- /src/core/file_sys/archive_artic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_artic.cpp -------------------------------------------------------------------------------- /src/core/file_sys/archive_artic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_artic.h -------------------------------------------------------------------------------- /src/core/file_sys/archive_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_backend.cpp -------------------------------------------------------------------------------- /src/core/file_sys/archive_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_backend.h -------------------------------------------------------------------------------- /src/core/file_sys/archive_ncch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_ncch.cpp -------------------------------------------------------------------------------- /src/core/file_sys/archive_ncch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_ncch.h -------------------------------------------------------------------------------- /src/core/file_sys/archive_savedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_savedata.h -------------------------------------------------------------------------------- /src/core/file_sys/archive_sdmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_sdmc.cpp -------------------------------------------------------------------------------- /src/core/file_sys/archive_sdmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_sdmc.h -------------------------------------------------------------------------------- /src/core/file_sys/archive_selfncch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/archive_selfncch.h -------------------------------------------------------------------------------- /src/core/file_sys/artic_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/artic_cache.cpp -------------------------------------------------------------------------------- /src/core/file_sys/artic_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/artic_cache.h -------------------------------------------------------------------------------- /src/core/file_sys/cia_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/cia_common.h -------------------------------------------------------------------------------- /src/core/file_sys/cia_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/cia_container.cpp -------------------------------------------------------------------------------- /src/core/file_sys/cia_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/cia_container.h -------------------------------------------------------------------------------- /src/core/file_sys/delay_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/delay_generator.cpp -------------------------------------------------------------------------------- /src/core/file_sys/delay_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/delay_generator.h -------------------------------------------------------------------------------- /src/core/file_sys/directory_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/directory_backend.h -------------------------------------------------------------------------------- /src/core/file_sys/disk_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/disk_archive.cpp -------------------------------------------------------------------------------- /src/core/file_sys/disk_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/disk_archive.h -------------------------------------------------------------------------------- /src/core/file_sys/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/errors.h -------------------------------------------------------------------------------- /src/core/file_sys/file_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/file_backend.h -------------------------------------------------------------------------------- /src/core/file_sys/ivfc_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/ivfc_archive.cpp -------------------------------------------------------------------------------- /src/core/file_sys/ivfc_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/ivfc_archive.h -------------------------------------------------------------------------------- /src/core/file_sys/layered_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/layered_fs.cpp -------------------------------------------------------------------------------- /src/core/file_sys/layered_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/layered_fs.h -------------------------------------------------------------------------------- /src/core/file_sys/ncch_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/ncch_container.cpp -------------------------------------------------------------------------------- /src/core/file_sys/ncch_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/ncch_container.h -------------------------------------------------------------------------------- /src/core/file_sys/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/patch.cpp -------------------------------------------------------------------------------- /src/core/file_sys/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/patch.h -------------------------------------------------------------------------------- /src/core/file_sys/path_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/path_parser.cpp -------------------------------------------------------------------------------- /src/core/file_sys/path_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/path_parser.h -------------------------------------------------------------------------------- /src/core/file_sys/plugin_3gx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/plugin_3gx.cpp -------------------------------------------------------------------------------- /src/core/file_sys/plugin_3gx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/plugin_3gx.h -------------------------------------------------------------------------------- /src/core/file_sys/romfs_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/romfs_reader.cpp -------------------------------------------------------------------------------- /src/core/file_sys/romfs_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/romfs_reader.h -------------------------------------------------------------------------------- /src/core/file_sys/savedata_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/savedata_archive.h -------------------------------------------------------------------------------- /src/core/file_sys/seed_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/seed_db.cpp -------------------------------------------------------------------------------- /src/core/file_sys/seed_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/seed_db.h -------------------------------------------------------------------------------- /src/core/file_sys/ticket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/ticket.cpp -------------------------------------------------------------------------------- /src/core/file_sys/ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/ticket.h -------------------------------------------------------------------------------- /src/core/file_sys/title_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/title_metadata.cpp -------------------------------------------------------------------------------- /src/core/file_sys/title_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/file_sys/title_metadata.h -------------------------------------------------------------------------------- /src/core/frontend/applets/swkbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/applets/swkbd.cpp -------------------------------------------------------------------------------- /src/core/frontend/applets/swkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/applets/swkbd.h -------------------------------------------------------------------------------- /src/core/frontend/camera/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/camera/factory.cpp -------------------------------------------------------------------------------- /src/core/frontend/camera/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/camera/factory.h -------------------------------------------------------------------------------- /src/core/frontend/camera/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/camera/interface.h -------------------------------------------------------------------------------- /src/core/frontend/emu_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/emu_window.cpp -------------------------------------------------------------------------------- /src/core/frontend/emu_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/emu_window.h -------------------------------------------------------------------------------- /src/core/frontend/image_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/image_interface.cpp -------------------------------------------------------------------------------- /src/core/frontend/image_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/image_interface.h -------------------------------------------------------------------------------- /src/core/frontend/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/frontend/input.h -------------------------------------------------------------------------------- /src/core/gdbstub/gdbstub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/gdbstub/gdbstub.cpp -------------------------------------------------------------------------------- /src/core/gdbstub/gdbstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/gdbstub/gdbstub.h -------------------------------------------------------------------------------- /src/core/gdbstub/hio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/gdbstub/hio.cpp -------------------------------------------------------------------------------- /src/core/gdbstub/hio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/gdbstub/hio.h -------------------------------------------------------------------------------- /src/core/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/global.h -------------------------------------------------------------------------------- /src/core/hle/applets/applet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/applet.cpp -------------------------------------------------------------------------------- /src/core/hle/applets/applet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/applet.h -------------------------------------------------------------------------------- /src/core/hle/applets/erreula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/erreula.cpp -------------------------------------------------------------------------------- /src/core/hle/applets/erreula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/erreula.h -------------------------------------------------------------------------------- /src/core/hle/applets/mii_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/mii_selector.cpp -------------------------------------------------------------------------------- /src/core/hle/applets/mii_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/mii_selector.h -------------------------------------------------------------------------------- /src/core/hle/applets/mint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/mint.cpp -------------------------------------------------------------------------------- /src/core/hle/applets/mint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/mint.h -------------------------------------------------------------------------------- /src/core/hle/applets/swkbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/swkbd.cpp -------------------------------------------------------------------------------- /src/core/hle/applets/swkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/applets/swkbd.h -------------------------------------------------------------------------------- /src/core/hle/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/ipc.h -------------------------------------------------------------------------------- /src/core/hle/ipc_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/ipc_helpers.h -------------------------------------------------------------------------------- /src/core/hle/kernel/address_arbiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/address_arbiter.h -------------------------------------------------------------------------------- /src/core/hle/kernel/client_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/client_port.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/client_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/client_port.h -------------------------------------------------------------------------------- /src/core/hle/kernel/client_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/client_session.h -------------------------------------------------------------------------------- /src/core/hle/kernel/config_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/config_mem.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/config_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/config_mem.h -------------------------------------------------------------------------------- /src/core/hle/kernel/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/errors.h -------------------------------------------------------------------------------- /src/core/hle/kernel/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/event.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/event.h -------------------------------------------------------------------------------- /src/core/hle/kernel/handle_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/handle_table.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/handle_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/handle_table.h -------------------------------------------------------------------------------- /src/core/hle/kernel/hle_ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/hle_ipc.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/hle_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/hle_ipc.h -------------------------------------------------------------------------------- /src/core/hle/kernel/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/ipc.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/ipc.h -------------------------------------------------------------------------------- /src/core/hle/kernel/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/kernel.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/kernel.h -------------------------------------------------------------------------------- /src/core/hle/kernel/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/memory.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/memory.h -------------------------------------------------------------------------------- /src/core/hle/kernel/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/mutex.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/mutex.h -------------------------------------------------------------------------------- /src/core/hle/kernel/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/object.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/object.h -------------------------------------------------------------------------------- /src/core/hle/kernel/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/process.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/process.h -------------------------------------------------------------------------------- /src/core/hle/kernel/resource_limit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/resource_limit.h -------------------------------------------------------------------------------- /src/core/hle/kernel/semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/semaphore.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/semaphore.h -------------------------------------------------------------------------------- /src/core/hle/kernel/server_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/server_port.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/server_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/server_port.h -------------------------------------------------------------------------------- /src/core/hle/kernel/server_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/server_session.h -------------------------------------------------------------------------------- /src/core/hle/kernel/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/session.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/session.h -------------------------------------------------------------------------------- /src/core/hle/kernel/shared_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/shared_memory.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/shared_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/shared_memory.h -------------------------------------------------------------------------------- /src/core/hle/kernel/shared_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/shared_page.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/shared_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/shared_page.h -------------------------------------------------------------------------------- /src/core/hle/kernel/svc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/svc.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/svc.h -------------------------------------------------------------------------------- /src/core/hle/kernel/svc_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/svc_wrapper.h -------------------------------------------------------------------------------- /src/core/hle/kernel/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/thread.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/thread.h -------------------------------------------------------------------------------- /src/core/hle/kernel/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/timer.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/timer.h -------------------------------------------------------------------------------- /src/core/hle/kernel/vm_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/vm_manager.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/vm_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/vm_manager.h -------------------------------------------------------------------------------- /src/core/hle/kernel/wait_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/wait_object.cpp -------------------------------------------------------------------------------- /src/core/hle/kernel/wait_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/kernel/wait_object.h -------------------------------------------------------------------------------- /src/core/hle/mii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/mii.cpp -------------------------------------------------------------------------------- /src/core/hle/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/mii.h -------------------------------------------------------------------------------- /src/core/hle/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/result.h -------------------------------------------------------------------------------- /src/core/hle/romfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/romfs.cpp -------------------------------------------------------------------------------- /src/core/hle/romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/romfs.h -------------------------------------------------------------------------------- /src/core/hle/service/ac/ac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ac/ac.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ac/ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ac/ac.h -------------------------------------------------------------------------------- /src/core/hle/service/ac/ac_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ac/ac_i.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ac/ac_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ac/ac_i.h -------------------------------------------------------------------------------- /src/core/hle/service/ac/ac_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ac/ac_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ac/ac_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ac/ac_u.h -------------------------------------------------------------------------------- /src/core/hle/service/act/act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/act/act.cpp -------------------------------------------------------------------------------- /src/core/hle/service/act/act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/act/act.h -------------------------------------------------------------------------------- /src/core/hle/service/act/act_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/act/act_a.cpp -------------------------------------------------------------------------------- /src/core/hle/service/act/act_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/act/act_a.h -------------------------------------------------------------------------------- /src/core/hle/service/act/act_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/act/act_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/act/act_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/act/act_u.h -------------------------------------------------------------------------------- /src/core/hle/service/am/am.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am.cpp -------------------------------------------------------------------------------- /src/core/hle/service/am/am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am.h -------------------------------------------------------------------------------- /src/core/hle/service/am/am_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am_app.cpp -------------------------------------------------------------------------------- /src/core/hle/service/am/am_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am_app.h -------------------------------------------------------------------------------- /src/core/hle/service/am/am_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am_net.cpp -------------------------------------------------------------------------------- /src/core/hle/service/am/am_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am_net.h -------------------------------------------------------------------------------- /src/core/hle/service/am/am_sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am_sys.cpp -------------------------------------------------------------------------------- /src/core/hle/service/am/am_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am_sys.h -------------------------------------------------------------------------------- /src/core/hle/service/am/am_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/am/am_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/am/am_u.h -------------------------------------------------------------------------------- /src/core/hle/service/apt/apt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/apt.cpp -------------------------------------------------------------------------------- /src/core/hle/service/apt/apt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/apt.h -------------------------------------------------------------------------------- /src/core/hle/service/apt/apt_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/apt_a.cpp -------------------------------------------------------------------------------- /src/core/hle/service/apt/apt_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/apt_a.h -------------------------------------------------------------------------------- /src/core/hle/service/apt/apt_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/apt_s.cpp -------------------------------------------------------------------------------- /src/core/hle/service/apt/apt_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/apt_s.h -------------------------------------------------------------------------------- /src/core/hle/service/apt/apt_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/apt_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/apt/apt_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/apt_u.h -------------------------------------------------------------------------------- /src/core/hle/service/apt/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/errors.h -------------------------------------------------------------------------------- /src/core/hle/service/apt/ns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/ns.cpp -------------------------------------------------------------------------------- /src/core/hle/service/apt/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/ns.h -------------------------------------------------------------------------------- /src/core/hle/service/apt/ns_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/ns_c.cpp -------------------------------------------------------------------------------- /src/core/hle/service/apt/ns_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/ns_c.h -------------------------------------------------------------------------------- /src/core/hle/service/apt/ns_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/ns_s.cpp -------------------------------------------------------------------------------- /src/core/hle/service/apt/ns_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/apt/ns_s.h -------------------------------------------------------------------------------- /src/core/hle/service/boss/boss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/boss/boss.cpp -------------------------------------------------------------------------------- /src/core/hle/service/boss/boss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/boss/boss.h -------------------------------------------------------------------------------- /src/core/hle/service/boss/boss_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/boss/boss_p.cpp -------------------------------------------------------------------------------- /src/core/hle/service/boss/boss_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/boss/boss_p.h -------------------------------------------------------------------------------- /src/core/hle/service/boss/boss_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/boss/boss_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/boss/boss_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/boss/boss_u.h -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam.h -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam_c.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam_c.h -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam_params.h -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam_q.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam_q.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam_q.h -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam_s.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam_s.h -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cam/cam_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/cam_u.h -------------------------------------------------------------------------------- /src/core/hle/service/cam/y2r_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/y2r_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cam/y2r_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cam/y2r_u.h -------------------------------------------------------------------------------- /src/core/hle/service/cecd/cecd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cecd/cecd.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cecd/cecd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cecd/cecd.h -------------------------------------------------------------------------------- /src/core/hle/service/cecd/cecd_ndm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cecd/cecd_ndm.h -------------------------------------------------------------------------------- /src/core/hle/service/cecd/cecd_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cecd/cecd_s.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cecd/cecd_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cecd/cecd_s.h -------------------------------------------------------------------------------- /src/core/hle/service/cecd/cecd_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cecd/cecd_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cecd/cecd_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cecd/cecd_u.h -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg.h -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg_i.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg_i.h -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg_nor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg_nor.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg_nor.h -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg_s.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg_s.h -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/cfg/cfg_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/cfg/cfg_u.h -------------------------------------------------------------------------------- /src/core/hle/service/csnd/csnd_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/csnd/csnd_snd.h -------------------------------------------------------------------------------- /src/core/hle/service/dlp/dlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dlp/dlp.cpp -------------------------------------------------------------------------------- /src/core/hle/service/dlp/dlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dlp/dlp.h -------------------------------------------------------------------------------- /src/core/hle/service/dlp/dlp_clnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dlp/dlp_clnt.cpp -------------------------------------------------------------------------------- /src/core/hle/service/dlp/dlp_clnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dlp/dlp_clnt.h -------------------------------------------------------------------------------- /src/core/hle/service/dlp/dlp_fkcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dlp/dlp_fkcl.cpp -------------------------------------------------------------------------------- /src/core/hle/service/dlp/dlp_fkcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dlp/dlp_fkcl.h -------------------------------------------------------------------------------- /src/core/hle/service/dlp/dlp_srvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dlp/dlp_srvr.cpp -------------------------------------------------------------------------------- /src/core/hle/service/dlp/dlp_srvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dlp/dlp_srvr.h -------------------------------------------------------------------------------- /src/core/hle/service/dsp/dsp_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dsp/dsp_dsp.cpp -------------------------------------------------------------------------------- /src/core/hle/service/dsp/dsp_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/dsp/dsp_dsp.h -------------------------------------------------------------------------------- /src/core/hle/service/err/err_f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/err/err_f.cpp -------------------------------------------------------------------------------- /src/core/hle/service/err/err_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/err/err_f.h -------------------------------------------------------------------------------- /src/core/hle/service/frd/frd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/frd/frd.cpp -------------------------------------------------------------------------------- /src/core/hle/service/frd/frd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/frd/frd.h -------------------------------------------------------------------------------- /src/core/hle/service/frd/frd_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/frd/frd_a.cpp -------------------------------------------------------------------------------- /src/core/hle/service/frd/frd_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/frd/frd_a.h -------------------------------------------------------------------------------- /src/core/hle/service/frd/frd_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/frd/frd_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/frd/frd_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/frd/frd_u.h -------------------------------------------------------------------------------- /src/core/hle/service/fs/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/fs/archive.cpp -------------------------------------------------------------------------------- /src/core/hle/service/fs/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/fs/archive.h -------------------------------------------------------------------------------- /src/core/hle/service/fs/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/fs/directory.cpp -------------------------------------------------------------------------------- /src/core/hle/service/fs/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/fs/directory.h -------------------------------------------------------------------------------- /src/core/hle/service/fs/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/fs/file.cpp -------------------------------------------------------------------------------- /src/core/hle/service/fs/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/fs/file.h -------------------------------------------------------------------------------- /src/core/hle/service/fs/fs_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/fs/fs_user.cpp -------------------------------------------------------------------------------- /src/core/hle/service/fs/fs_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/fs/fs_user.h -------------------------------------------------------------------------------- /src/core/hle/service/gsp/gsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/gsp/gsp.cpp -------------------------------------------------------------------------------- /src/core/hle/service/gsp/gsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/gsp/gsp.h -------------------------------------------------------------------------------- /src/core/hle/service/gsp/gsp_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/gsp/gsp_gpu.cpp -------------------------------------------------------------------------------- /src/core/hle/service/gsp/gsp_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/gsp/gsp_gpu.h -------------------------------------------------------------------------------- /src/core/hle/service/gsp/gsp_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/gsp/gsp_lcd.cpp -------------------------------------------------------------------------------- /src/core/hle/service/gsp/gsp_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/gsp/gsp_lcd.h -------------------------------------------------------------------------------- /src/core/hle/service/hid/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/hid/hid.cpp -------------------------------------------------------------------------------- /src/core/hle/service/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/hid/hid.h -------------------------------------------------------------------------------- /src/core/hle/service/hid/hid_spvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/hid/hid_spvr.cpp -------------------------------------------------------------------------------- /src/core/hle/service/hid/hid_spvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/hid/hid_spvr.h -------------------------------------------------------------------------------- /src/core/hle/service/hid/hid_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/hid/hid_user.cpp -------------------------------------------------------------------------------- /src/core/hle/service/hid/hid_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/hid/hid_user.h -------------------------------------------------------------------------------- /src/core/hle/service/http/http_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/http/http_c.cpp -------------------------------------------------------------------------------- /src/core/hle/service/http/http_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/http/http_c.h -------------------------------------------------------------------------------- /src/core/hle/service/ir/extra_hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/extra_hid.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ir/extra_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/extra_hid.h -------------------------------------------------------------------------------- /src/core/hle/service/ir/ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/ir.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ir/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/ir.h -------------------------------------------------------------------------------- /src/core/hle/service/ir/ir_rst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/ir_rst.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ir/ir_rst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/ir_rst.h -------------------------------------------------------------------------------- /src/core/hle/service/ir/ir_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/ir_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ir/ir_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/ir_u.h -------------------------------------------------------------------------------- /src/core/hle/service/ir/ir_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/ir_user.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ir/ir_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ir/ir_user.h -------------------------------------------------------------------------------- /src/core/hle/service/ldr_ro/ldr_ro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ldr_ro/ldr_ro.h -------------------------------------------------------------------------------- /src/core/hle/service/mcu/mcu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mcu/mcu.cpp -------------------------------------------------------------------------------- /src/core/hle/service/mcu/mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mcu/mcu.h -------------------------------------------------------------------------------- /src/core/hle/service/mcu/mcu_hwc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mcu/mcu_hwc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/mcu/mcu_hwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mcu/mcu_hwc.h -------------------------------------------------------------------------------- /src/core/hle/service/mic/mic_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mic/mic_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/mic/mic_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mic/mic_u.h -------------------------------------------------------------------------------- /src/core/hle/service/mvd/mvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mvd/mvd.cpp -------------------------------------------------------------------------------- /src/core/hle/service/mvd/mvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mvd/mvd.h -------------------------------------------------------------------------------- /src/core/hle/service/mvd/mvd_std.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mvd/mvd_std.cpp -------------------------------------------------------------------------------- /src/core/hle/service/mvd/mvd_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/mvd/mvd_std.h -------------------------------------------------------------------------------- /src/core/hle/service/ndm/ndm_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ndm/ndm_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ndm/ndm_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ndm/ndm_u.h -------------------------------------------------------------------------------- /src/core/hle/service/news/news.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/news/news.cpp -------------------------------------------------------------------------------- /src/core/hle/service/news/news.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/news/news.h -------------------------------------------------------------------------------- /src/core/hle/service/news/news_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/news/news_s.cpp -------------------------------------------------------------------------------- /src/core/hle/service/news/news_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/news/news_s.h -------------------------------------------------------------------------------- /src/core/hle/service/news/news_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/news/news_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/news/news_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/news/news_u.h -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nfc/nfc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nfc/nfc.h -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nfc/nfc_device.h -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nfc/nfc_m.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nfc/nfc_m.h -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nfc/nfc_types.h -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nfc/nfc_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nfc/nfc_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nfc/nfc_u.h -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nim/nim.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nim/nim.h -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim_aoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nim/nim_aoc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim_aoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nim/nim_aoc.h -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nim/nim_s.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nim/nim_s.h -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nim/nim_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nim/nim_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nim/nim_u.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_cec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_cec.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_cec.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_ext.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_ext.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_inf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_inf.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_inf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_inf.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_sap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_sap.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_sap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_sap.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_soc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_soc.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_soc.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_tst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_tst.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_tst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_tst.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_uds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_uds.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nwm/nwm_uds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/nwm_uds.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/uds_beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/uds_beacon.h -------------------------------------------------------------------------------- /src/core/hle/service/nwm/uds_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/uds_data.cpp -------------------------------------------------------------------------------- /src/core/hle/service/nwm/uds_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/nwm/uds_data.h -------------------------------------------------------------------------------- /src/core/hle/service/plgldr/plgldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/plgldr/plgldr.h -------------------------------------------------------------------------------- /src/core/hle/service/pm/pm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pm/pm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/pm/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pm/pm.h -------------------------------------------------------------------------------- /src/core/hle/service/pm/pm_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pm/pm_app.cpp -------------------------------------------------------------------------------- /src/core/hle/service/pm/pm_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pm/pm_app.h -------------------------------------------------------------------------------- /src/core/hle/service/pm/pm_dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pm/pm_dbg.cpp -------------------------------------------------------------------------------- /src/core/hle/service/pm/pm_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pm/pm_dbg.h -------------------------------------------------------------------------------- /src/core/hle/service/ps/ps_ps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ps/ps_ps.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ps/ps_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ps/ps_ps.h -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm.h -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_gets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_gets.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_gets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_gets.h -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_play.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_play.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_play.h -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_sets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_sets.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_sets.h -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_sysm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_sysm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_sysm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_sysm.h -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ptm/ptm_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ptm/ptm_u.h -------------------------------------------------------------------------------- /src/core/hle/service/pxi/dev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pxi/dev.cpp -------------------------------------------------------------------------------- /src/core/hle/service/pxi/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pxi/dev.h -------------------------------------------------------------------------------- /src/core/hle/service/pxi/pxi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pxi/pxi.cpp -------------------------------------------------------------------------------- /src/core/hle/service/pxi/pxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/pxi/pxi.h -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm.h -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm_c.cpp -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm_c.h -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm_s.cpp -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm_s.h -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm_sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm_sp.cpp -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm_sp.h -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/qtm/qtm_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/qtm/qtm_u.h -------------------------------------------------------------------------------- /src/core/hle/service/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/service.cpp -------------------------------------------------------------------------------- /src/core/hle/service/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/service.h -------------------------------------------------------------------------------- /src/core/hle/service/sm/sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/sm/sm.cpp -------------------------------------------------------------------------------- /src/core/hle/service/sm/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/sm/sm.h -------------------------------------------------------------------------------- /src/core/hle/service/sm/srv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/sm/srv.cpp -------------------------------------------------------------------------------- /src/core/hle/service/sm/srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/sm/srv.h -------------------------------------------------------------------------------- /src/core/hle/service/soc/soc_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/soc/soc_u.cpp -------------------------------------------------------------------------------- /src/core/hle/service/soc/soc_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/soc/soc_u.h -------------------------------------------------------------------------------- /src/core/hle/service/ssl/ssl_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ssl/ssl_c.cpp -------------------------------------------------------------------------------- /src/core/hle/service/ssl/ssl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hle/service/ssl/ssl_c.h -------------------------------------------------------------------------------- /src/core/hw/aes/arithmetic128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/aes/arithmetic128.cpp -------------------------------------------------------------------------------- /src/core/hw/aes/arithmetic128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/aes/arithmetic128.h -------------------------------------------------------------------------------- /src/core/hw/aes/ccm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/aes/ccm.cpp -------------------------------------------------------------------------------- /src/core/hw/aes/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/aes/ccm.h -------------------------------------------------------------------------------- /src/core/hw/aes/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/aes/key.cpp -------------------------------------------------------------------------------- /src/core/hw/aes/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/aes/key.h -------------------------------------------------------------------------------- /src/core/hw/rsa/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/rsa/rsa.cpp -------------------------------------------------------------------------------- /src/core/hw/rsa/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/rsa/rsa.h -------------------------------------------------------------------------------- /src/core/hw/y2r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/y2r.cpp -------------------------------------------------------------------------------- /src/core/hw/y2r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/hw/y2r.h -------------------------------------------------------------------------------- /src/core/loader/3dsx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/3dsx.cpp -------------------------------------------------------------------------------- /src/core/loader/3dsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/3dsx.h -------------------------------------------------------------------------------- /src/core/loader/artic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/artic.cpp -------------------------------------------------------------------------------- /src/core/loader/artic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/artic.h -------------------------------------------------------------------------------- /src/core/loader/elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/elf.cpp -------------------------------------------------------------------------------- /src/core/loader/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/elf.h -------------------------------------------------------------------------------- /src/core/loader/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/loader.cpp -------------------------------------------------------------------------------- /src/core/loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/loader.h -------------------------------------------------------------------------------- /src/core/loader/ncch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/ncch.cpp -------------------------------------------------------------------------------- /src/core/loader/ncch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/ncch.h -------------------------------------------------------------------------------- /src/core/loader/smdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/smdh.cpp -------------------------------------------------------------------------------- /src/core/loader/smdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/loader/smdh.h -------------------------------------------------------------------------------- /src/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/memory.cpp -------------------------------------------------------------------------------- /src/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/memory.h -------------------------------------------------------------------------------- /src/core/movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/movie.cpp -------------------------------------------------------------------------------- /src/core/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/movie.h -------------------------------------------------------------------------------- /src/core/nus_download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/nus_download.cpp -------------------------------------------------------------------------------- /src/core/nus_download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/nus_download.h -------------------------------------------------------------------------------- /src/core/perf_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/perf_stats.cpp -------------------------------------------------------------------------------- /src/core/perf_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/perf_stats.h -------------------------------------------------------------------------------- /src/core/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/precompiled_headers.h -------------------------------------------------------------------------------- /src/core/rpc/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/rpc/packet.cpp -------------------------------------------------------------------------------- /src/core/rpc/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/rpc/packet.h -------------------------------------------------------------------------------- /src/core/rpc/rpc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/rpc/rpc_server.cpp -------------------------------------------------------------------------------- /src/core/rpc/rpc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/rpc/rpc_server.h -------------------------------------------------------------------------------- /src/core/rpc/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/rpc/server.cpp -------------------------------------------------------------------------------- /src/core/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/rpc/server.h -------------------------------------------------------------------------------- /src/core/rpc/udp_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/rpc/udp_server.cpp -------------------------------------------------------------------------------- /src/core/rpc/udp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/rpc/udp_server.h -------------------------------------------------------------------------------- /src/core/savestate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/savestate.cpp -------------------------------------------------------------------------------- /src/core/savestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/savestate.h -------------------------------------------------------------------------------- /src/core/savestate_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/savestate_data.h -------------------------------------------------------------------------------- /src/core/system_titles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/system_titles.cpp -------------------------------------------------------------------------------- /src/core/system_titles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/system_titles.h -------------------------------------------------------------------------------- /src/core/telemetry_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/telemetry_session.cpp -------------------------------------------------------------------------------- /src/core/telemetry_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/telemetry_session.h -------------------------------------------------------------------------------- /src/core/tracer/citrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/tracer/citrace.h -------------------------------------------------------------------------------- /src/core/tracer/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/tracer/recorder.cpp -------------------------------------------------------------------------------- /src/core/tracer/recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/core/tracer/recorder.h -------------------------------------------------------------------------------- /src/input_common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/CMakeLists.txt -------------------------------------------------------------------------------- /src/input_common/analog_from_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/analog_from_button.h -------------------------------------------------------------------------------- /src/input_common/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/keyboard.cpp -------------------------------------------------------------------------------- /src/input_common/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/keyboard.h -------------------------------------------------------------------------------- /src/input_common/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/main.cpp -------------------------------------------------------------------------------- /src/input_common/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/main.h -------------------------------------------------------------------------------- /src/input_common/motion_emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/motion_emu.cpp -------------------------------------------------------------------------------- /src/input_common/motion_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/motion_emu.h -------------------------------------------------------------------------------- /src/input_common/sdl/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/sdl/sdl.cpp -------------------------------------------------------------------------------- /src/input_common/sdl/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/sdl/sdl.h -------------------------------------------------------------------------------- /src/input_common/sdl/sdl_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/sdl/sdl_impl.cpp -------------------------------------------------------------------------------- /src/input_common/sdl/sdl_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/sdl/sdl_impl.h -------------------------------------------------------------------------------- /src/input_common/touch_from_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/touch_from_button.h -------------------------------------------------------------------------------- /src/input_common/udp/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/udp/client.cpp -------------------------------------------------------------------------------- /src/input_common/udp/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/udp/client.h -------------------------------------------------------------------------------- /src/input_common/udp/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/udp/protocol.cpp -------------------------------------------------------------------------------- /src/input_common/udp/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/udp/protocol.h -------------------------------------------------------------------------------- /src/input_common/udp/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/udp/udp.cpp -------------------------------------------------------------------------------- /src/input_common/udp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/input_common/udp/udp.h -------------------------------------------------------------------------------- /src/installer/lime3ds.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/installer/lime3ds.nsi -------------------------------------------------------------------------------- /src/lime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime/CMakeLists.txt -------------------------------------------------------------------------------- /src/lime/common_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime/common_strings.h -------------------------------------------------------------------------------- /src/lime/lime.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime/lime.rc -------------------------------------------------------------------------------- /src/lime/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime/main.cpp -------------------------------------------------------------------------------- /src/lime/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime/precompiled_headers.h -------------------------------------------------------------------------------- /src/lime_qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/CMakeLists.txt -------------------------------------------------------------------------------- /src/lime_qt/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/aboutdialog.cpp -------------------------------------------------------------------------------- /src/lime_qt/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/aboutdialog.h -------------------------------------------------------------------------------- /src/lime_qt/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/aboutdialog.ui -------------------------------------------------------------------------------- /src/lime_qt/applets/mii_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/applets/mii_selector.cpp -------------------------------------------------------------------------------- /src/lime_qt/applets/mii_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/applets/mii_selector.h -------------------------------------------------------------------------------- /src/lime_qt/applets/swkbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/applets/swkbd.cpp -------------------------------------------------------------------------------- /src/lime_qt/applets/swkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/applets/swkbd.h -------------------------------------------------------------------------------- /src/lime_qt/bootmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/bootmanager.cpp -------------------------------------------------------------------------------- /src/lime_qt/bootmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/bootmanager.h -------------------------------------------------------------------------------- /src/lime_qt/camera/camera_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/camera/camera_util.cpp -------------------------------------------------------------------------------- /src/lime_qt/camera/camera_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/camera/camera_util.h -------------------------------------------------------------------------------- /src/lime_qt/camera/qt_camera_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/camera/qt_camera_base.cpp -------------------------------------------------------------------------------- /src/lime_qt/camera/qt_camera_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/camera/qt_camera_base.h -------------------------------------------------------------------------------- /src/lime_qt/compatibility_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/compatibility_list.cpp -------------------------------------------------------------------------------- /src/lime_qt/compatibility_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/compatibility_list.h -------------------------------------------------------------------------------- /src/lime_qt/configuration/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/configuration/config.cpp -------------------------------------------------------------------------------- /src/lime_qt/configuration/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/configuration/config.h -------------------------------------------------------------------------------- /src/lime_qt/debugger/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/console.cpp -------------------------------------------------------------------------------- /src/lime_qt/debugger/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/console.h -------------------------------------------------------------------------------- /src/lime_qt/debugger/ipc/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/ipc/recorder.cpp -------------------------------------------------------------------------------- /src/lime_qt/debugger/ipc/recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/ipc/recorder.h -------------------------------------------------------------------------------- /src/lime_qt/debugger/ipc/recorder.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/ipc/recorder.ui -------------------------------------------------------------------------------- /src/lime_qt/debugger/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/profiler.cpp -------------------------------------------------------------------------------- /src/lime_qt/debugger/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/profiler.h -------------------------------------------------------------------------------- /src/lime_qt/debugger/registers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/registers.cpp -------------------------------------------------------------------------------- /src/lime_qt/debugger/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/registers.h -------------------------------------------------------------------------------- /src/lime_qt/debugger/registers.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/registers.ui -------------------------------------------------------------------------------- /src/lime_qt/debugger/wait_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/wait_tree.cpp -------------------------------------------------------------------------------- /src/lime_qt/debugger/wait_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/debugger/wait_tree.h -------------------------------------------------------------------------------- /src/lime_qt/discord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/discord.h -------------------------------------------------------------------------------- /src/lime_qt/discord_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/discord_impl.cpp -------------------------------------------------------------------------------- /src/lime_qt/discord_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/discord_impl.h -------------------------------------------------------------------------------- /src/lime_qt/dumping/dumping_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/dumping/dumping_dialog.h -------------------------------------------------------------------------------- /src/lime_qt/dumping/dumping_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/dumping/dumping_dialog.ui -------------------------------------------------------------------------------- /src/lime_qt/dumping/options_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/dumping/options_dialog.h -------------------------------------------------------------------------------- /src/lime_qt/dumping/options_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/dumping/options_dialog.ui -------------------------------------------------------------------------------- /src/lime_qt/game_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/game_list.cpp -------------------------------------------------------------------------------- /src/lime_qt/game_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/game_list.h -------------------------------------------------------------------------------- /src/lime_qt/game_list_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/game_list_p.h -------------------------------------------------------------------------------- /src/lime_qt/game_list_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/game_list_worker.cpp -------------------------------------------------------------------------------- /src/lime_qt/game_list_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/game_list_worker.h -------------------------------------------------------------------------------- /src/lime_qt/hotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/hotkeys.cpp -------------------------------------------------------------------------------- /src/lime_qt/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/hotkeys.h -------------------------------------------------------------------------------- /src/lime_qt/lime_qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/lime_qt.cpp -------------------------------------------------------------------------------- /src/lime_qt/lime_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/lime_qt.h -------------------------------------------------------------------------------- /src/lime_qt/loading_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/loading_screen.cpp -------------------------------------------------------------------------------- /src/lime_qt/loading_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/loading_screen.h -------------------------------------------------------------------------------- /src/lime_qt/loading_screen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/loading_screen.ui -------------------------------------------------------------------------------- /src/lime_qt/main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/main.ui -------------------------------------------------------------------------------- /src/lime_qt/movie/movie_play_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/movie/movie_play_dialog.h -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/chat_room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/chat_room.cpp -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/chat_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/chat_room.h -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/chat_room.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/chat_room.ui -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/client_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/client_room.h -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/host_room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/host_room.cpp -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/host_room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/host_room.h -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/host_room.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/host_room.ui -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/lobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/lobby.cpp -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/lobby.h -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/lobby.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/lobby.ui -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/lobby_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/lobby_p.h -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/message.cpp -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/message.h -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/state.cpp -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/state.h -------------------------------------------------------------------------------- /src/lime_qt/multiplayer/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/multiplayer/validation.h -------------------------------------------------------------------------------- /src/lime_qt/play_time_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/play_time_manager.cpp -------------------------------------------------------------------------------- /src/lime_qt/play_time_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/play_time_manager.h -------------------------------------------------------------------------------- /src/lime_qt/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/precompiled_headers.h -------------------------------------------------------------------------------- /src/lime_qt/qt_image_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/qt_image_interface.cpp -------------------------------------------------------------------------------- /src/lime_qt/qt_image_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/qt_image_interface.h -------------------------------------------------------------------------------- /src/lime_qt/uisettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/uisettings.cpp -------------------------------------------------------------------------------- /src/lime_qt/uisettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/uisettings.h -------------------------------------------------------------------------------- /src/lime_qt/updater/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/updater/updater.cpp -------------------------------------------------------------------------------- /src/lime_qt/updater/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/updater/updater.h -------------------------------------------------------------------------------- /src/lime_qt/updater/updater_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/updater/updater_p.h -------------------------------------------------------------------------------- /src/lime_qt/util/clickable_label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/util/clickable_label.cpp -------------------------------------------------------------------------------- /src/lime_qt/util/clickable_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/util/clickable_label.h -------------------------------------------------------------------------------- /src/lime_qt/util/spinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/util/spinbox.cpp -------------------------------------------------------------------------------- /src/lime_qt/util/spinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/util/spinbox.h -------------------------------------------------------------------------------- /src/lime_qt/util/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/util/util.cpp -------------------------------------------------------------------------------- /src/lime_qt/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_qt/util/util.h -------------------------------------------------------------------------------- /src/lime_room/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_room/CMakeLists.txt -------------------------------------------------------------------------------- /src/lime_room/lime_room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_room/lime_room.cpp -------------------------------------------------------------------------------- /src/lime_room/lime_room.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_room/lime_room.rc -------------------------------------------------------------------------------- /src/lime_room/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_room/precompiled_headers.h -------------------------------------------------------------------------------- /src/lime_sdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_sdl/CMakeLists.txt -------------------------------------------------------------------------------- /src/lime_sdl/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_sdl/config.cpp -------------------------------------------------------------------------------- /src/lime_sdl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_sdl/config.h -------------------------------------------------------------------------------- /src/lime_sdl/default_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_sdl/default_ini.h -------------------------------------------------------------------------------- /src/lime_sdl/lime_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_sdl/lime_sdl.cpp -------------------------------------------------------------------------------- /src/lime_sdl/lime_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_sdl/lime_sdl.h -------------------------------------------------------------------------------- /src/lime_sdl/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_sdl/precompiled_headers.h -------------------------------------------------------------------------------- /src/lime_sdl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/lime_sdl/resource.h -------------------------------------------------------------------------------- /src/network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/CMakeLists.txt -------------------------------------------------------------------------------- /src/network/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/network.cpp -------------------------------------------------------------------------------- /src/network/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/network.h -------------------------------------------------------------------------------- /src/network/network_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/network_settings.cpp -------------------------------------------------------------------------------- /src/network/network_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/network_settings.h -------------------------------------------------------------------------------- /src/network/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/packet.cpp -------------------------------------------------------------------------------- /src/network/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/packet.h -------------------------------------------------------------------------------- /src/network/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/precompiled_headers.h -------------------------------------------------------------------------------- /src/network/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/room.cpp -------------------------------------------------------------------------------- /src/network/room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/room.h -------------------------------------------------------------------------------- /src/network/room_member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/room_member.cpp -------------------------------------------------------------------------------- /src/network/room_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/room_member.h -------------------------------------------------------------------------------- /src/network/socket_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/socket_manager.cpp -------------------------------------------------------------------------------- /src/network/socket_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/socket_manager.h -------------------------------------------------------------------------------- /src/network/verify_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/verify_user.cpp -------------------------------------------------------------------------------- /src/network/verify_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/network/verify_user.h -------------------------------------------------------------------------------- /src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/audio_core/audio_fixures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/audio_core/audio_fixures.h -------------------------------------------------------------------------------- /src/tests/audio_core/hle/hle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/audio_core/hle/hle.cpp -------------------------------------------------------------------------------- /src/tests/audio_core/hle/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/audio_core/hle/source.cpp -------------------------------------------------------------------------------- /src/tests/audio_core/lle/lle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/audio_core/lle/lle.cpp -------------------------------------------------------------------------------- /src/tests/audio_core/merryhime_3ds_audio/README.md: -------------------------------------------------------------------------------- 1 | Port of HW tests from https://github.com/merryhime/3ds-audio 2 | -------------------------------------------------------------------------------- /src/tests/common/bit_field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/common/bit_field.cpp -------------------------------------------------------------------------------- /src/tests/common/file_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/common/file_util.cpp -------------------------------------------------------------------------------- /src/tests/common/param_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/common/param_package.cpp -------------------------------------------------------------------------------- /src/tests/core/core_timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/core/core_timing.cpp -------------------------------------------------------------------------------- /src/tests/core/hle/kernel/hle_ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/core/hle/kernel/hle_ipc.cpp -------------------------------------------------------------------------------- /src/tests/core/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/core/memory/memory.cpp -------------------------------------------------------------------------------- /src/tests/core/memory/vm_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/core/memory/vm_manager.cpp -------------------------------------------------------------------------------- /src/tests/precompiled_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/tests/precompiled_headers.h -------------------------------------------------------------------------------- /src/video_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/CMakeLists.txt -------------------------------------------------------------------------------- /src/video_core/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/gpu.cpp -------------------------------------------------------------------------------- /src/video_core/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/gpu.h -------------------------------------------------------------------------------- /src/video_core/gpu_debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/gpu_debugger.h -------------------------------------------------------------------------------- /src/video_core/pica/pica_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/pica/pica_core.cpp -------------------------------------------------------------------------------- /src/video_core/pica/pica_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/pica/pica_core.h -------------------------------------------------------------------------------- /src/video_core/pica/regs_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/pica/regs_lcd.h -------------------------------------------------------------------------------- /src/video_core/pica/regs_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/pica/regs_shader.h -------------------------------------------------------------------------------- /src/video_core/pica/shader_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/pica/shader_setup.h -------------------------------------------------------------------------------- /src/video_core/pica/shader_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/pica/shader_unit.h -------------------------------------------------------------------------------- /src/video_core/pica_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/pica_types.h -------------------------------------------------------------------------------- /src/video_core/renderer_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/renderer_base.cpp -------------------------------------------------------------------------------- /src/video_core/renderer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/renderer_base.h -------------------------------------------------------------------------------- /src/video_core/shader/debug_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/shader/debug_data.h -------------------------------------------------------------------------------- /src/video_core/shader/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/shader/shader.cpp -------------------------------------------------------------------------------- /src/video_core/shader/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/shader/shader.h -------------------------------------------------------------------------------- /src/video_core/shader/shader_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/shader/shader_jit.h -------------------------------------------------------------------------------- /src/video_core/texture/etc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/texture/etc1.cpp -------------------------------------------------------------------------------- /src/video_core/texture/etc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/texture/etc1.h -------------------------------------------------------------------------------- /src/video_core/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/utils.h -------------------------------------------------------------------------------- /src/video_core/video_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/video_core.cpp -------------------------------------------------------------------------------- /src/video_core/video_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/video_core/video_core.h -------------------------------------------------------------------------------- /src/web_service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/web_service/CMakeLists.txt -------------------------------------------------------------------------------- /src/web_service/telemetry_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/web_service/telemetry_json.cpp -------------------------------------------------------------------------------- /src/web_service/telemetry_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/web_service/telemetry_json.h -------------------------------------------------------------------------------- /src/web_service/verify_login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/web_service/verify_login.cpp -------------------------------------------------------------------------------- /src/web_service/verify_login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/web_service/verify_login.h -------------------------------------------------------------------------------- /src/web_service/verify_user_jwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/web_service/verify_user_jwt.h -------------------------------------------------------------------------------- /src/web_service/web_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/web_service/web_backend.cpp -------------------------------------------------------------------------------- /src/web_service/web_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lime3DS/lime3ds-archive/HEAD/src/web_service/web_backend.h --------------------------------------------------------------------------------