├── .gitattributes ├── .github └── workflows │ ├── nightly.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── Makefile ├── Makefile.arm7 ├── Makefile.arm9 ├── README.md ├── _pico └── themes │ ├── material │ └── theme.json │ └── raspberry │ ├── bannerListCell.bin │ ├── bannerListCellPltt.bin │ ├── bannerListCellSelected.bin │ ├── bannerListCellSelectedPltt.bin │ ├── bottombg.bin │ ├── gridcell.bin │ ├── gridcellPltt.bin │ ├── gridcellSelected.bin │ ├── gridcellSelectedPltt.bin │ ├── scrim.bin │ ├── scrimPltt.bin │ ├── theme.json │ └── topbg.bin ├── arm7 ├── dldi_ds_arm7.ld ├── dldi_ds_arm7.specs └── source │ ├── Arm7State.h │ ├── ExitMode.h │ ├── common.h │ ├── dldi.s │ ├── ipcServices │ ├── DldiIpcService.cpp │ ├── DldiIpcService.h │ ├── DsiSdIpcService.h │ ├── DsiSdIpcService.twl.cpp │ ├── RtcIpcService.cpp │ ├── RtcIpcService.h │ ├── SoundIpcService.cpp │ └── SoundIpcService.h │ ├── main.cpp │ ├── mmc │ ├── mmc_spec.h │ ├── sd_spec.h │ ├── sdmmc.h │ ├── sdmmc.twl.c │ ├── tmio.h │ └── tmio.twl.c │ ├── picoLoaderBootstrap.cpp │ └── picoLoaderBootstrap.h ├── arm9 ├── data │ ├── NotoSansJP-Medium-10.nft2 │ ├── NotoSansJP-Medium-11.nft2 │ ├── NotoSansJP-Medium-7_5.nft2 │ └── NotoSansJP-Regular-10.nft2 ├── gfx │ ├── backIcon.grit │ ├── backIcon.png │ ├── bannerListIcon.grit │ ├── bannerListIcon.png │ ├── bannerListItemBg0.grit │ ├── bannerListItemBg0.png │ ├── bannerListItemBg1.grit │ ├── bannerListItemBg1.png │ ├── bannerListItemBg2.grit │ ├── bannerListItemBg2.png │ ├── bottomSheetBg.grit │ ├── bottomSheetBg.png │ ├── carouselMask.grit │ ├── carouselMask.png │ ├── chipFilled.grit │ ├── chipFilled.png │ ├── coverflowIcon.grit │ ├── coverflowIcon.png │ ├── folderCover.grit │ ├── folderCover.png │ ├── gamesIcon.grit │ ├── gamesIcon.png │ ├── hGridIcon.grit │ ├── hGridIcon.png │ ├── heartIcon.grit │ ├── heartIcon.png │ ├── iconButtonSelector.grit │ ├── iconButtonSelector.png │ ├── iconButtonSelectorTexture.grit │ ├── iconButtonSelectorTexture.png │ ├── iconCell.grit │ ├── iconCell.png │ ├── iconCell2.grit │ ├── iconCell2.png │ ├── iconCell3.grit │ ├── iconCell3.png │ ├── largeDSCardIcon.grit │ ├── largeDSCardIcon.png │ ├── largeFileIcon.grit │ ├── largeFileIcon.png │ ├── largeFolderIcon.grit │ ├── largeFolderIcon.png │ ├── listIcon.grit │ ├── listIcon.png │ ├── mainBg.grit │ ├── mainBg.png │ ├── moviesIcon.grit │ ├── moviesIcon.png │ ├── musicIcon.grit │ ├── musicIcon.png │ ├── picturesIcon.grit │ ├── picturesIcon.png │ ├── recentIcon.grit │ ├── recentIcon.png │ ├── scrim.grit │ ├── scrim.png │ ├── settingsIcon.grit │ ├── settingsIcon.png │ ├── smallHeartIcon.grit │ ├── smallHeartIcon.png │ ├── smallHeartIconFilled.grit │ ├── smallHeartIconFilled.png │ ├── sortNameAscendingIcon.grit │ ├── sortNameAscendingIcon.png │ ├── sortNameDescendingIcon.grit │ ├── sortNameDescendingIcon.png │ ├── splashTop.grit │ ├── splashTop.png │ ├── unknownCover.grit │ ├── unknownCover.png │ ├── unknownIcon.grit │ ├── unknownIcon.png │ ├── vGridIcon.grit │ └── vGridIcon.png └── source │ ├── App.cpp │ ├── App.h │ ├── DialogPresenter.cpp │ ├── DialogPresenter.h │ ├── PicoLoaderProcess.cpp │ ├── PicoLoaderProcess.h │ ├── VBlank.cpp │ ├── VBlank.h │ ├── animation │ ├── Animator.cpp │ ├── Animator.h │ ├── CubicBezierCurve.h │ ├── Curve.h │ ├── Interpolator.h │ ├── LinearCurve.h │ └── ThreePointCubicBezierCurve.h │ ├── bgm │ ├── AudioStreamPlayer.cpp │ ├── AudioStreamPlayer.h │ ├── BcstmAudioStream.cpp │ ├── BcstmAudioStream.h │ ├── BgmService.cpp │ ├── BgmService.h │ ├── IAudioStream.h │ ├── IAudioStreamPlayer.h │ ├── IBgmService.h │ ├── Pcm16FileAudioStream.cpp │ ├── Pcm16FileAudioStream.h │ ├── bcstm.h │ └── dspAdpcm.s │ ├── common.h │ ├── core │ ├── BitVector.h │ ├── Environment.cpp │ ├── Environment.h │ ├── LinkedList.h │ ├── LinkedListLink.h │ ├── SharedPtr.h │ ├── String.h │ ├── StringUtil.cpp │ ├── StringUtil.h │ ├── di.h │ ├── heap │ │ ├── tlsf.c │ │ └── tlsf.h │ ├── math │ │ ├── ColorConverter.h │ │ ├── Point.h │ │ ├── Rectangle.h │ │ ├── Rgb.h │ │ ├── RgbMixer.h │ │ ├── SinTable.h │ │ └── fixed.h │ ├── semihosting.h │ ├── semihosting.s │ └── task │ │ ├── Task.cpp │ │ ├── Task.h │ │ ├── TaskFactory.h │ │ ├── TaskQueue.cpp │ │ ├── TaskQueue.h │ │ ├── TaskResult.h │ │ └── TaskState.h │ ├── dldiIpc.cpp │ ├── dldiIpc.h │ ├── dsiSdIpc.cpp │ ├── dsiSdIpc.h │ ├── fat │ ├── Directory.h │ ├── FastFileRef.h │ ├── File.h │ ├── diskio.cpp │ ├── diskio.h │ ├── dldi_stub.s │ ├── ff.c │ ├── ff.h │ ├── ffconf.h │ ├── ffsystem.c │ └── ffunicode.c │ ├── globalHeap.cpp │ ├── globalHeap.h │ ├── gui │ ├── AdvancedPaletteManager.cpp │ ├── AdvancedPaletteManager.h │ ├── Alignment.h │ ├── AscendingStackVramManager.h │ ├── DescendingStackVramManager.h │ ├── FocusManager.cpp │ ├── FocusManager.h │ ├── FocusMoveDirection.h │ ├── GraphicsContext.h │ ├── Gx.h │ ├── IVramManager.h │ ├── OamBuilder.h │ ├── OamManager.cpp │ ├── OamManager.h │ ├── PaletteManager.h │ ├── Rgb6Palette.cpp │ ├── Rgb6Palette.h │ ├── SimplePaletteManager.cpp │ ├── SimplePaletteManager.h │ ├── StackVramManager.h │ ├── VBlankTextureLoadRequest.h │ ├── VBlankTextureLoadRequestState.h │ ├── VBlankTextureLoader.cpp │ ├── VBlankTextureLoader.h │ ├── VramContext.h │ ├── font │ │ ├── nitroFont2.cpp │ │ └── nitroFont2.h │ ├── input │ │ ├── IInputSource.h │ │ ├── InputKey.h │ │ ├── InputProvider.h │ │ ├── InputRepeater.cpp │ │ ├── InputRepeater.h │ │ ├── PadInputSource.h │ │ ├── SampledInputProvider.cpp │ │ └── SampledInputProvider.h │ ├── materialDesign.h │ ├── palette │ │ ├── DirectPalette.cpp │ │ ├── DirectPalette.h │ │ ├── GradientPalette.cpp │ │ ├── GradientPalette.h │ │ └── IPalette.h │ └── views │ │ ├── DialogType.h │ │ ├── DialogView.h │ │ ├── Label2DView.cpp │ │ ├── Label2DView.h │ │ ├── Label3DView.cpp │ │ ├── Label3DView.h │ │ ├── LabelView.cpp │ │ ├── LabelView.h │ │ ├── RecyclerAdapter.h │ │ ├── RecyclerView.cpp │ │ ├── RecyclerView.h │ │ ├── RecyclerViewBase.h │ │ ├── View.h │ │ └── ViewContainer.h │ ├── json │ └── ArduinoJson.h │ ├── logger │ └── SemihostingOutputStream.h │ ├── main.cpp │ ├── material │ ├── cam │ │ ├── cam.cpp │ │ ├── cam.h │ │ ├── hct.cpp │ │ ├── hct.h │ │ ├── hct_solver.cpp │ │ ├── hct_solver.h │ │ ├── viewing_conditions.cpp │ │ └── viewing_conditions.h │ ├── palettes │ │ ├── core.cpp │ │ ├── core.h │ │ ├── tones.cpp │ │ └── tones.h │ ├── scheme │ │ ├── scheme.cpp │ │ └── scheme.h │ └── utils │ │ ├── utils.cpp │ │ └── utils.h │ ├── picoLoaderBootstrap.cpp │ ├── picoLoaderBootstrap.h │ ├── rng │ ├── LinearCongruentialGenerator.cpp │ ├── LinearCongruentialGenerator.h │ ├── RandomGenerator.h │ └── ThreadSafeRandomGenerator.h │ ├── romBrowser │ ├── CoverRepository.cpp │ ├── CoverRepository.h │ ├── DisplayMode │ │ ├── BannerListFileRecyclerAdapter.cpp │ │ ├── BannerListFileRecyclerAdapter.h │ │ ├── CoverFlowFileRecyclerAdapter.cpp │ │ ├── CoverFlowFileRecyclerAdapter.h │ │ ├── IconGridFileRecyclerAdapter.cpp │ │ ├── IconGridFileRecyclerAdapter.h │ │ ├── RomBrowserBannerListDisplayMode.cpp │ │ ├── RomBrowserBannerListDisplayMode.h │ │ ├── RomBrowserDisplayMode.h │ │ ├── RomBrowserDisplayModeFactory.cpp │ │ ├── RomBrowserDisplayModeFactory.h │ │ ├── RomBrowserHorizontalCoverFlowDisplayMode.cpp │ │ ├── RomBrowserHorizontalCoverFlowDisplayMode.h │ │ ├── RomBrowserHorizontalIconGridDisplayMode.cpp │ │ ├── RomBrowserHorizontalIconGridDisplayMode.h │ │ ├── RomBrowserVerticalIconGridDisplayMode.cpp │ │ └── RomBrowserVerticalIconGridDisplayMode.h │ ├── FileInfo.cpp │ ├── FileInfo.h │ ├── FileInfoManager.cpp │ ├── FileInfoManager.h │ ├── FileRecyclerAdapter.cpp │ ├── FileRecyclerAdapter.h │ ├── FileType │ │ ├── BmpFileCover.cpp │ │ ├── BmpFileCover.h │ │ ├── CustomFileType.h │ │ ├── ExtensionFileTypeProvider.cpp │ │ ├── ExtensionFileTypeProvider.h │ │ ├── FileCover.h │ │ ├── FileCoverBitmapToTiledCopy.s │ │ ├── FileIcon.h │ │ ├── FileType.h │ │ ├── FileTypeClassification.h │ │ ├── Folder │ │ │ ├── FolderFileCover.h │ │ │ ├── FolderFileType.cpp │ │ │ └── FolderFileType.h │ │ ├── Gba │ │ │ ├── GbaFileType.cpp │ │ │ ├── GbaFileType.h │ │ │ ├── GbaInternalFileInfo.cpp │ │ │ └── GbaInternalFileInfo.h │ │ ├── IFileTypeProvider.h │ │ ├── InternalFileInfo.h │ │ ├── Nds │ │ │ ├── NdsFileIcon.cpp │ │ │ ├── NdsFileIcon.h │ │ │ ├── NdsFileType.cpp │ │ │ ├── NdsFileType.h │ │ │ ├── NdsInternalFileInfo.cpp │ │ │ ├── NdsInternalFileInfo.h │ │ │ └── ndsBanner.h │ │ ├── NullFileTypeProvider.h │ │ ├── StaticFileCover.h │ │ ├── StaticIcon.cpp │ │ ├── StaticIcon.h │ │ ├── UnknownFileCover.h │ │ ├── UnknownFileType.cpp │ │ └── UnknownFileType.h │ ├── ICoverRepository.h │ ├── IRomBrowserController.h │ ├── RomBrowserController.cpp │ ├── RomBrowserController.h │ ├── RomBrowserState.h │ ├── RomBrowserStateMachine.cpp │ ├── RomBrowserStateMachine.h │ ├── RomBrowserStateTrigger.h │ ├── SdFolder.cpp │ ├── SdFolder.h │ ├── SdFolderFactory.cpp │ ├── SdFolderFactory.h │ ├── SdFolderFilterSortParams.h │ ├── SdFolderSortDirection.h │ ├── SdFolderSortType.h │ ├── StateMachineTriggerChecker.h │ ├── Theme │ │ ├── IRomBrowserViewFactory.h │ │ ├── IThemeFileIconFactory.h │ │ ├── Material │ │ │ ├── CarouselRecyclerView.cpp │ │ │ ├── CarouselRecyclerView.h │ │ │ ├── MaterialAppBarView.cpp │ │ │ ├── MaterialAppBarView.h │ │ │ ├── MaterialBannerListItemView.cpp │ │ │ ├── MaterialBannerListItemView.h │ │ │ ├── MaterialCoverFlowFileRecyclerAdapter.cpp │ │ │ ├── MaterialCoverFlowFileRecyclerAdapter.h │ │ │ ├── MaterialCoverView.cpp │ │ │ ├── MaterialCoverView.h │ │ │ ├── MaterialFileIcon.cpp │ │ │ ├── MaterialFileIcon.h │ │ │ ├── MaterialFileInfoCardView.cpp │ │ │ ├── MaterialFileInfoCardView.h │ │ │ ├── MaterialFolderIcon.h │ │ │ ├── MaterialGenericFileIcon.h │ │ │ ├── MaterialIconGridItemView.cpp │ │ │ ├── MaterialIconGridItemView.h │ │ │ ├── MaterialNdsFileIcon.h │ │ │ ├── MaterialRomBrowserViewFactory.h │ │ │ └── MaterialThemeFileIconFactory.h │ │ └── custom │ │ │ ├── CustomAppBarView.cpp │ │ │ ├── CustomAppBarView.h │ │ │ ├── CustomBannerListItemView.cpp │ │ │ ├── CustomBannerListItemView.h │ │ │ ├── CustomFileInfoView.cpp │ │ │ ├── CustomFileInfoView.h │ │ │ ├── CustomIconGridItemView.cpp │ │ │ ├── CustomIconGridItemView.h │ │ │ ├── CustomRomBrowserViewFactory.cpp │ │ │ └── CustomRomBrowserViewFactory.h │ ├── viewModels │ │ ├── DisplaySettingsViewModel.h │ │ ├── RomBrowserAppBarViewModel.h │ │ ├── RomBrowserBottomScreenViewModel.h │ │ ├── RomBrowserViewModel.cpp │ │ └── RomBrowserViewModel.h │ └── views │ │ ├── AppBarView.cpp │ │ ├── AppBarView.h │ │ ├── BannerListItemView.cpp │ │ ├── BannerListItemView.h │ │ ├── BannerView.cpp │ │ ├── BannerView.h │ │ ├── BottomSheetView.h │ │ ├── ChipView.cpp │ │ ├── ChipView.h │ │ ├── CoverFlowRecyclerView.cpp │ │ ├── CoverFlowRecyclerView.h │ │ ├── CoverFlowRecyclerViewBase.cpp │ │ ├── CoverFlowRecyclerViewBase.h │ │ ├── CoverView.cpp │ │ ├── CoverView.h │ │ ├── DisplaySettingsBottomSheetView.cpp │ │ ├── DisplaySettingsBottomSheetView.h │ │ ├── IconButton2DView.cpp │ │ ├── IconButton2DView.h │ │ ├── IconButton3DView.cpp │ │ ├── IconButton3DView.h │ │ ├── IconButtonView.cpp │ │ ├── IconButtonView.h │ │ ├── IconGridItemView.cpp │ │ ├── IconGridItemView.h │ │ ├── NdsGameDetailsBottomSheetView.cpp │ │ ├── NdsGameDetailsBottomSheetView.h │ │ ├── RomBrowserAppBarView.cpp │ │ ├── RomBrowserAppBarView.h │ │ ├── RomBrowserBottomScreenView.cpp │ │ ├── RomBrowserBottomScreenView.h │ │ ├── RomBrowserTopScreenView.cpp │ │ ├── RomBrowserTopScreenView.h │ │ ├── RomBrowserView.cpp │ │ └── RomBrowserView.h │ ├── rtcIpc.cpp │ ├── rtcIpc.h │ ├── services │ ├── process │ │ ├── IProcess.h │ │ ├── ProcessFactory.h │ │ ├── ProcessFactory.thumb.cpp │ │ ├── ProcessManager.cpp │ │ └── ProcessManager.h │ └── settings │ │ ├── AppSettings.h │ │ ├── FileAssociation.h │ │ ├── IAppSettingsService.h │ │ ├── JsonAppSettingsSerializer.h │ │ ├── JsonAppSettingsSerializer.thumb.cpp │ │ ├── JsonAppSettingsService.cpp │ │ ├── JsonAppSettingsService.h │ │ ├── RomBrowserDisplaySettings.h │ │ ├── RomBrowserLayout.h │ │ └── RomBrowserSortMode.h │ └── themes │ ├── DefaultFontRepository.cpp │ ├── DefaultFontRepository.h │ ├── FontType.h │ ├── IFontRepository.h │ ├── ITheme.h │ ├── Theme.cpp │ ├── Theme.h │ ├── ThemeFactory.cpp │ ├── ThemeFactory.h │ ├── ThemeInfo.h │ ├── ThemeInfoFactory.h │ ├── ThemeInfoFactory.thumb.cpp │ ├── ThemeType.h │ ├── background │ └── IThemeBackground.h │ ├── custom │ ├── CustomMainBackground.cpp │ ├── CustomMainBackground.h │ ├── CustomSubBackground.cpp │ ├── CustomSubBackground.h │ ├── CustomTheme.cpp │ ├── CustomTheme.h │ └── CustomTopBackgroundType.h │ └── material │ ├── MaterialColorScheme.h │ ├── MaterialColorSchemeFactory.cpp │ ├── MaterialColorSchemeFactory.h │ ├── MaterialMainBackground.cpp │ ├── MaterialMainBackground.h │ ├── MaterialSubBackground.cpp │ ├── MaterialSubBackground.h │ ├── MaterialTheme.cpp │ └── MaterialTheme.h ├── common ├── core │ ├── TickCounter.cpp │ ├── TickCounter.h │ ├── mini-printf.c │ └── mini-printf.h ├── dldiIpcCommand.h ├── dsiSdIpcCommand.h ├── ipc │ ├── IpcService.cpp │ ├── IpcService.h │ ├── ThreadIpcService.cpp │ └── ThreadIpcService.h ├── ipcChannels.h ├── logger │ ├── ILogger.h │ ├── IOutputStream.h │ ├── NitroEmulatorOutputStream.cpp │ ├── NitroEmulatorOutputStream.h │ ├── NocashOutputStream.h │ ├── NullLogger.h │ ├── NullOutputStream.h │ ├── PicoAgbAdapterOutputStream.cpp │ ├── PicoAgbAdapterOutputStream.h │ ├── PlainLogger.h │ └── ThreadSafeLogger.h ├── picoAgbAdapter.h ├── picoLoader7.h ├── sharedMemory.h └── soundIpcCommand.h ├── docs ├── Covers.md ├── FileAssociations.md ├── Themes.md ├── Usage.md └── images │ ├── CoverExample.bmp │ ├── Coverflow.png │ ├── Horizontal.png │ ├── HorizontalCustom.png │ ├── List.png │ ├── SettingsPage.png │ └── Vertical.png ├── icon.bmp └── licenses ├── ArduinoJson.txt ├── Material.txt ├── dsi_sdmmc.txt ├── mini-printf.txt ├── newlib.txt └── tlsf.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bin binary -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.arm7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/Makefile.arm7 -------------------------------------------------------------------------------- /Makefile.arm9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/Makefile.arm9 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/README.md -------------------------------------------------------------------------------- /_pico/themes/material/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/material/theme.json -------------------------------------------------------------------------------- /_pico/themes/raspberry/bannerListCell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/bannerListCell.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/bannerListCellPltt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/bannerListCellPltt.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/bannerListCellSelected.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/bannerListCellSelected.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/bannerListCellSelectedPltt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/bannerListCellSelectedPltt.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/bottombg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/bottombg.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/gridcell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/gridcell.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/gridcellPltt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/gridcellPltt.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/gridcellSelected.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/gridcellSelected.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/gridcellSelectedPltt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/gridcellSelectedPltt.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/scrim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/scrim.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/scrimPltt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/scrimPltt.bin -------------------------------------------------------------------------------- /_pico/themes/raspberry/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/theme.json -------------------------------------------------------------------------------- /_pico/themes/raspberry/topbg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/_pico/themes/raspberry/topbg.bin -------------------------------------------------------------------------------- /arm7/dldi_ds_arm7.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/dldi_ds_arm7.ld -------------------------------------------------------------------------------- /arm7/dldi_ds_arm7.specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/dldi_ds_arm7.specs -------------------------------------------------------------------------------- /arm7/source/Arm7State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/Arm7State.h -------------------------------------------------------------------------------- /arm7/source/ExitMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/ExitMode.h -------------------------------------------------------------------------------- /arm7/source/common.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /arm7/source/dldi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/dldi.s -------------------------------------------------------------------------------- /arm7/source/ipcServices/DldiIpcService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/ipcServices/DldiIpcService.cpp -------------------------------------------------------------------------------- /arm7/source/ipcServices/DldiIpcService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/ipcServices/DldiIpcService.h -------------------------------------------------------------------------------- /arm7/source/ipcServices/DsiSdIpcService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/ipcServices/DsiSdIpcService.h -------------------------------------------------------------------------------- /arm7/source/ipcServices/DsiSdIpcService.twl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/ipcServices/DsiSdIpcService.twl.cpp -------------------------------------------------------------------------------- /arm7/source/ipcServices/RtcIpcService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/ipcServices/RtcIpcService.cpp -------------------------------------------------------------------------------- /arm7/source/ipcServices/RtcIpcService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/ipcServices/RtcIpcService.h -------------------------------------------------------------------------------- /arm7/source/ipcServices/SoundIpcService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/ipcServices/SoundIpcService.cpp -------------------------------------------------------------------------------- /arm7/source/ipcServices/SoundIpcService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/ipcServices/SoundIpcService.h -------------------------------------------------------------------------------- /arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/main.cpp -------------------------------------------------------------------------------- /arm7/source/mmc/mmc_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/mmc/mmc_spec.h -------------------------------------------------------------------------------- /arm7/source/mmc/sd_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/mmc/sd_spec.h -------------------------------------------------------------------------------- /arm7/source/mmc/sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/mmc/sdmmc.h -------------------------------------------------------------------------------- /arm7/source/mmc/sdmmc.twl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/mmc/sdmmc.twl.c -------------------------------------------------------------------------------- /arm7/source/mmc/tmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/mmc/tmio.h -------------------------------------------------------------------------------- /arm7/source/mmc/tmio.twl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/mmc/tmio.twl.c -------------------------------------------------------------------------------- /arm7/source/picoLoaderBootstrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/picoLoaderBootstrap.cpp -------------------------------------------------------------------------------- /arm7/source/picoLoaderBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm7/source/picoLoaderBootstrap.h -------------------------------------------------------------------------------- /arm9/data/NotoSansJP-Medium-10.nft2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/data/NotoSansJP-Medium-10.nft2 -------------------------------------------------------------------------------- /arm9/data/NotoSansJP-Medium-11.nft2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/data/NotoSansJP-Medium-11.nft2 -------------------------------------------------------------------------------- /arm9/data/NotoSansJP-Medium-7_5.nft2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/data/NotoSansJP-Medium-7_5.nft2 -------------------------------------------------------------------------------- /arm9/data/NotoSansJP-Regular-10.nft2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/data/NotoSansJP-Regular-10.nft2 -------------------------------------------------------------------------------- /arm9/gfx/backIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/backIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/backIcon.png -------------------------------------------------------------------------------- /arm9/gfx/bannerListIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/bannerListIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/bannerListIcon.png -------------------------------------------------------------------------------- /arm9/gfx/bannerListItemBg0.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | -------------------------------------------------------------------------------- /arm9/gfx/bannerListItemBg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/bannerListItemBg0.png -------------------------------------------------------------------------------- /arm9/gfx/bannerListItemBg1.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/bannerListItemBg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/bannerListItemBg1.png -------------------------------------------------------------------------------- /arm9/gfx/bannerListItemBg2.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/bannerListItemBg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/bannerListItemBg2.png -------------------------------------------------------------------------------- /arm9/gfx/bottomSheetBg.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/bottomSheetBg.grit -------------------------------------------------------------------------------- /arm9/gfx/bottomSheetBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/bottomSheetBg.png -------------------------------------------------------------------------------- /arm9/gfx/carouselMask.grit: -------------------------------------------------------------------------------- 1 | -gb 2 | -gB8 3 | -p! -------------------------------------------------------------------------------- /arm9/gfx/carouselMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/carouselMask.png -------------------------------------------------------------------------------- /arm9/gfx/chipFilled.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 -------------------------------------------------------------------------------- /arm9/gfx/chipFilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/chipFilled.png -------------------------------------------------------------------------------- /arm9/gfx/coverflowIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/coverflowIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/coverflowIcon.png -------------------------------------------------------------------------------- /arm9/gfx/folderCover.grit: -------------------------------------------------------------------------------- 1 | -gb 2 | -gB8 3 | -p -------------------------------------------------------------------------------- /arm9/gfx/folderCover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/folderCover.png -------------------------------------------------------------------------------- /arm9/gfx/gamesIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/gamesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/gamesIcon.png -------------------------------------------------------------------------------- /arm9/gfx/hGridIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/hGridIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/hGridIcon.png -------------------------------------------------------------------------------- /arm9/gfx/heartIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/heartIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/heartIcon.png -------------------------------------------------------------------------------- /arm9/gfx/iconButtonSelector.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/iconButtonSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/iconButtonSelector.png -------------------------------------------------------------------------------- /arm9/gfx/iconButtonSelectorTexture.grit: -------------------------------------------------------------------------------- 1 | -gb 2 | -gB8 3 | -p! -------------------------------------------------------------------------------- /arm9/gfx/iconButtonSelectorTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/iconButtonSelectorTexture.png -------------------------------------------------------------------------------- /arm9/gfx/iconCell.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/iconCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/iconCell.png -------------------------------------------------------------------------------- /arm9/gfx/iconCell2.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | -------------------------------------------------------------------------------- /arm9/gfx/iconCell2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/iconCell2.png -------------------------------------------------------------------------------- /arm9/gfx/iconCell3.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | -------------------------------------------------------------------------------- /arm9/gfx/iconCell3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/iconCell3.png -------------------------------------------------------------------------------- /arm9/gfx/largeDSCardIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/largeDSCardIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/largeDSCardIcon.png -------------------------------------------------------------------------------- /arm9/gfx/largeFileIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/largeFileIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/largeFileIcon.png -------------------------------------------------------------------------------- /arm9/gfx/largeFolderIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/largeFolderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/largeFolderIcon.png -------------------------------------------------------------------------------- /arm9/gfx/listIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/listIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/listIcon.png -------------------------------------------------------------------------------- /arm9/gfx/mainBg.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/mainBg.grit -------------------------------------------------------------------------------- /arm9/gfx/mainBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/mainBg.png -------------------------------------------------------------------------------- /arm9/gfx/moviesIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/moviesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/moviesIcon.png -------------------------------------------------------------------------------- /arm9/gfx/musicIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/musicIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/musicIcon.png -------------------------------------------------------------------------------- /arm9/gfx/picturesIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/picturesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/picturesIcon.png -------------------------------------------------------------------------------- /arm9/gfx/recentIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/recentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/recentIcon.png -------------------------------------------------------------------------------- /arm9/gfx/scrim.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/scrim.grit -------------------------------------------------------------------------------- /arm9/gfx/scrim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/scrim.png -------------------------------------------------------------------------------- /arm9/gfx/settingsIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/settingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/settingsIcon.png -------------------------------------------------------------------------------- /arm9/gfx/smallHeartIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/smallHeartIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/smallHeartIcon.png -------------------------------------------------------------------------------- /arm9/gfx/smallHeartIconFilled.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/smallHeartIconFilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/smallHeartIconFilled.png -------------------------------------------------------------------------------- /arm9/gfx/sortNameAscendingIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/sortNameAscendingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/sortNameAscendingIcon.png -------------------------------------------------------------------------------- /arm9/gfx/sortNameDescendingIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/sortNameDescendingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/sortNameDescendingIcon.png -------------------------------------------------------------------------------- /arm9/gfx/splashTop.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/splashTop.grit -------------------------------------------------------------------------------- /arm9/gfx/splashTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/splashTop.png -------------------------------------------------------------------------------- /arm9/gfx/unknownCover.grit: -------------------------------------------------------------------------------- 1 | -gb 2 | -gB8 3 | -p -------------------------------------------------------------------------------- /arm9/gfx/unknownCover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/unknownCover.png -------------------------------------------------------------------------------- /arm9/gfx/unknownIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/unknownIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/unknownIcon.png -------------------------------------------------------------------------------- /arm9/gfx/vGridIcon.grit: -------------------------------------------------------------------------------- 1 | # tile format 2 | -gt 3 | 4 | # graphics bit depth is 4 (16 color) 5 | -gB4 6 | 7 | -p! -------------------------------------------------------------------------------- /arm9/gfx/vGridIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/gfx/vGridIcon.png -------------------------------------------------------------------------------- /arm9/source/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/App.cpp -------------------------------------------------------------------------------- /arm9/source/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/App.h -------------------------------------------------------------------------------- /arm9/source/DialogPresenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/DialogPresenter.cpp -------------------------------------------------------------------------------- /arm9/source/DialogPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/DialogPresenter.h -------------------------------------------------------------------------------- /arm9/source/PicoLoaderProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/PicoLoaderProcess.cpp -------------------------------------------------------------------------------- /arm9/source/PicoLoaderProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/PicoLoaderProcess.h -------------------------------------------------------------------------------- /arm9/source/VBlank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/VBlank.cpp -------------------------------------------------------------------------------- /arm9/source/VBlank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/VBlank.h -------------------------------------------------------------------------------- /arm9/source/animation/Animator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/animation/Animator.cpp -------------------------------------------------------------------------------- /arm9/source/animation/Animator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/animation/Animator.h -------------------------------------------------------------------------------- /arm9/source/animation/CubicBezierCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/animation/CubicBezierCurve.h -------------------------------------------------------------------------------- /arm9/source/animation/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/animation/Curve.h -------------------------------------------------------------------------------- /arm9/source/animation/Interpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/animation/Interpolator.h -------------------------------------------------------------------------------- /arm9/source/animation/LinearCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/animation/LinearCurve.h -------------------------------------------------------------------------------- /arm9/source/animation/ThreePointCubicBezierCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/animation/ThreePointCubicBezierCurve.h -------------------------------------------------------------------------------- /arm9/source/bgm/AudioStreamPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/AudioStreamPlayer.cpp -------------------------------------------------------------------------------- /arm9/source/bgm/AudioStreamPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/AudioStreamPlayer.h -------------------------------------------------------------------------------- /arm9/source/bgm/BcstmAudioStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/BcstmAudioStream.cpp -------------------------------------------------------------------------------- /arm9/source/bgm/BcstmAudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/BcstmAudioStream.h -------------------------------------------------------------------------------- /arm9/source/bgm/BgmService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/BgmService.cpp -------------------------------------------------------------------------------- /arm9/source/bgm/BgmService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/BgmService.h -------------------------------------------------------------------------------- /arm9/source/bgm/IAudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/IAudioStream.h -------------------------------------------------------------------------------- /arm9/source/bgm/IAudioStreamPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/IAudioStreamPlayer.h -------------------------------------------------------------------------------- /arm9/source/bgm/IBgmService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/IBgmService.h -------------------------------------------------------------------------------- /arm9/source/bgm/Pcm16FileAudioStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/Pcm16FileAudioStream.cpp -------------------------------------------------------------------------------- /arm9/source/bgm/Pcm16FileAudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/Pcm16FileAudioStream.h -------------------------------------------------------------------------------- /arm9/source/bgm/bcstm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/bcstm.h -------------------------------------------------------------------------------- /arm9/source/bgm/dspAdpcm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/bgm/dspAdpcm.s -------------------------------------------------------------------------------- /arm9/source/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/common.h -------------------------------------------------------------------------------- /arm9/source/core/BitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/BitVector.h -------------------------------------------------------------------------------- /arm9/source/core/Environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/Environment.cpp -------------------------------------------------------------------------------- /arm9/source/core/Environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/Environment.h -------------------------------------------------------------------------------- /arm9/source/core/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/LinkedList.h -------------------------------------------------------------------------------- /arm9/source/core/LinkedListLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/LinkedListLink.h -------------------------------------------------------------------------------- /arm9/source/core/SharedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/SharedPtr.h -------------------------------------------------------------------------------- /arm9/source/core/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/String.h -------------------------------------------------------------------------------- /arm9/source/core/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/StringUtil.cpp -------------------------------------------------------------------------------- /arm9/source/core/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/StringUtil.h -------------------------------------------------------------------------------- /arm9/source/core/di.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/di.h -------------------------------------------------------------------------------- /arm9/source/core/heap/tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/heap/tlsf.c -------------------------------------------------------------------------------- /arm9/source/core/heap/tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/heap/tlsf.h -------------------------------------------------------------------------------- /arm9/source/core/math/ColorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/math/ColorConverter.h -------------------------------------------------------------------------------- /arm9/source/core/math/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/math/Point.h -------------------------------------------------------------------------------- /arm9/source/core/math/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/math/Rectangle.h -------------------------------------------------------------------------------- /arm9/source/core/math/Rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/math/Rgb.h -------------------------------------------------------------------------------- /arm9/source/core/math/RgbMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/math/RgbMixer.h -------------------------------------------------------------------------------- /arm9/source/core/math/SinTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/math/SinTable.h -------------------------------------------------------------------------------- /arm9/source/core/math/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/math/fixed.h -------------------------------------------------------------------------------- /arm9/source/core/semihosting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/semihosting.h -------------------------------------------------------------------------------- /arm9/source/core/semihosting.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/semihosting.s -------------------------------------------------------------------------------- /arm9/source/core/task/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/task/Task.cpp -------------------------------------------------------------------------------- /arm9/source/core/task/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/task/Task.h -------------------------------------------------------------------------------- /arm9/source/core/task/TaskFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/task/TaskFactory.h -------------------------------------------------------------------------------- /arm9/source/core/task/TaskQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/task/TaskQueue.cpp -------------------------------------------------------------------------------- /arm9/source/core/task/TaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/task/TaskQueue.h -------------------------------------------------------------------------------- /arm9/source/core/task/TaskResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/task/TaskResult.h -------------------------------------------------------------------------------- /arm9/source/core/task/TaskState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/core/task/TaskState.h -------------------------------------------------------------------------------- /arm9/source/dldiIpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/dldiIpc.cpp -------------------------------------------------------------------------------- /arm9/source/dldiIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/dldiIpc.h -------------------------------------------------------------------------------- /arm9/source/dsiSdIpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/dsiSdIpc.cpp -------------------------------------------------------------------------------- /arm9/source/dsiSdIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/dsiSdIpc.h -------------------------------------------------------------------------------- /arm9/source/fat/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/Directory.h -------------------------------------------------------------------------------- /arm9/source/fat/FastFileRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/FastFileRef.h -------------------------------------------------------------------------------- /arm9/source/fat/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/File.h -------------------------------------------------------------------------------- /arm9/source/fat/diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/diskio.cpp -------------------------------------------------------------------------------- /arm9/source/fat/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/diskio.h -------------------------------------------------------------------------------- /arm9/source/fat/dldi_stub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/dldi_stub.s -------------------------------------------------------------------------------- /arm9/source/fat/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/ff.c -------------------------------------------------------------------------------- /arm9/source/fat/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/ff.h -------------------------------------------------------------------------------- /arm9/source/fat/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/ffconf.h -------------------------------------------------------------------------------- /arm9/source/fat/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/ffsystem.c -------------------------------------------------------------------------------- /arm9/source/fat/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/fat/ffunicode.c -------------------------------------------------------------------------------- /arm9/source/globalHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/globalHeap.cpp -------------------------------------------------------------------------------- /arm9/source/globalHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/globalHeap.h -------------------------------------------------------------------------------- /arm9/source/gui/AdvancedPaletteManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/AdvancedPaletteManager.cpp -------------------------------------------------------------------------------- /arm9/source/gui/AdvancedPaletteManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/AdvancedPaletteManager.h -------------------------------------------------------------------------------- /arm9/source/gui/Alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/Alignment.h -------------------------------------------------------------------------------- /arm9/source/gui/AscendingStackVramManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/AscendingStackVramManager.h -------------------------------------------------------------------------------- /arm9/source/gui/DescendingStackVramManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/DescendingStackVramManager.h -------------------------------------------------------------------------------- /arm9/source/gui/FocusManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/FocusManager.cpp -------------------------------------------------------------------------------- /arm9/source/gui/FocusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/FocusManager.h -------------------------------------------------------------------------------- /arm9/source/gui/FocusMoveDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/FocusMoveDirection.h -------------------------------------------------------------------------------- /arm9/source/gui/GraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/GraphicsContext.h -------------------------------------------------------------------------------- /arm9/source/gui/Gx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/Gx.h -------------------------------------------------------------------------------- /arm9/source/gui/IVramManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/IVramManager.h -------------------------------------------------------------------------------- /arm9/source/gui/OamBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/OamBuilder.h -------------------------------------------------------------------------------- /arm9/source/gui/OamManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/OamManager.cpp -------------------------------------------------------------------------------- /arm9/source/gui/OamManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/OamManager.h -------------------------------------------------------------------------------- /arm9/source/gui/PaletteManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/PaletteManager.h -------------------------------------------------------------------------------- /arm9/source/gui/Rgb6Palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/Rgb6Palette.cpp -------------------------------------------------------------------------------- /arm9/source/gui/Rgb6Palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/Rgb6Palette.h -------------------------------------------------------------------------------- /arm9/source/gui/SimplePaletteManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/SimplePaletteManager.cpp -------------------------------------------------------------------------------- /arm9/source/gui/SimplePaletteManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/SimplePaletteManager.h -------------------------------------------------------------------------------- /arm9/source/gui/StackVramManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/StackVramManager.h -------------------------------------------------------------------------------- /arm9/source/gui/VBlankTextureLoadRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/VBlankTextureLoadRequest.h -------------------------------------------------------------------------------- /arm9/source/gui/VBlankTextureLoadRequestState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/VBlankTextureLoadRequestState.h -------------------------------------------------------------------------------- /arm9/source/gui/VBlankTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/VBlankTextureLoader.cpp -------------------------------------------------------------------------------- /arm9/source/gui/VBlankTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/VBlankTextureLoader.h -------------------------------------------------------------------------------- /arm9/source/gui/VramContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/VramContext.h -------------------------------------------------------------------------------- /arm9/source/gui/font/nitroFont2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/font/nitroFont2.cpp -------------------------------------------------------------------------------- /arm9/source/gui/font/nitroFont2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/font/nitroFont2.h -------------------------------------------------------------------------------- /arm9/source/gui/input/IInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/input/IInputSource.h -------------------------------------------------------------------------------- /arm9/source/gui/input/InputKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/input/InputKey.h -------------------------------------------------------------------------------- /arm9/source/gui/input/InputProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/input/InputProvider.h -------------------------------------------------------------------------------- /arm9/source/gui/input/InputRepeater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/input/InputRepeater.cpp -------------------------------------------------------------------------------- /arm9/source/gui/input/InputRepeater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/input/InputRepeater.h -------------------------------------------------------------------------------- /arm9/source/gui/input/PadInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/input/PadInputSource.h -------------------------------------------------------------------------------- /arm9/source/gui/input/SampledInputProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/input/SampledInputProvider.cpp -------------------------------------------------------------------------------- /arm9/source/gui/input/SampledInputProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/input/SampledInputProvider.h -------------------------------------------------------------------------------- /arm9/source/gui/materialDesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/materialDesign.h -------------------------------------------------------------------------------- /arm9/source/gui/palette/DirectPalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/palette/DirectPalette.cpp -------------------------------------------------------------------------------- /arm9/source/gui/palette/DirectPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/palette/DirectPalette.h -------------------------------------------------------------------------------- /arm9/source/gui/palette/GradientPalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/palette/GradientPalette.cpp -------------------------------------------------------------------------------- /arm9/source/gui/palette/GradientPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/palette/GradientPalette.h -------------------------------------------------------------------------------- /arm9/source/gui/palette/IPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/palette/IPalette.h -------------------------------------------------------------------------------- /arm9/source/gui/views/DialogType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/DialogType.h -------------------------------------------------------------------------------- /arm9/source/gui/views/DialogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/DialogView.h -------------------------------------------------------------------------------- /arm9/source/gui/views/Label2DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/Label2DView.cpp -------------------------------------------------------------------------------- /arm9/source/gui/views/Label2DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/Label2DView.h -------------------------------------------------------------------------------- /arm9/source/gui/views/Label3DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/Label3DView.cpp -------------------------------------------------------------------------------- /arm9/source/gui/views/Label3DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/Label3DView.h -------------------------------------------------------------------------------- /arm9/source/gui/views/LabelView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/LabelView.cpp -------------------------------------------------------------------------------- /arm9/source/gui/views/LabelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/LabelView.h -------------------------------------------------------------------------------- /arm9/source/gui/views/RecyclerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/RecyclerAdapter.h -------------------------------------------------------------------------------- /arm9/source/gui/views/RecyclerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/RecyclerView.cpp -------------------------------------------------------------------------------- /arm9/source/gui/views/RecyclerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/RecyclerView.h -------------------------------------------------------------------------------- /arm9/source/gui/views/RecyclerViewBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/RecyclerViewBase.h -------------------------------------------------------------------------------- /arm9/source/gui/views/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/View.h -------------------------------------------------------------------------------- /arm9/source/gui/views/ViewContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/gui/views/ViewContainer.h -------------------------------------------------------------------------------- /arm9/source/json/ArduinoJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/json/ArduinoJson.h -------------------------------------------------------------------------------- /arm9/source/logger/SemihostingOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/logger/SemihostingOutputStream.h -------------------------------------------------------------------------------- /arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/main.cpp -------------------------------------------------------------------------------- /arm9/source/material/cam/cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/cam/cam.cpp -------------------------------------------------------------------------------- /arm9/source/material/cam/cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/cam/cam.h -------------------------------------------------------------------------------- /arm9/source/material/cam/hct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/cam/hct.cpp -------------------------------------------------------------------------------- /arm9/source/material/cam/hct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/cam/hct.h -------------------------------------------------------------------------------- /arm9/source/material/cam/hct_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/cam/hct_solver.cpp -------------------------------------------------------------------------------- /arm9/source/material/cam/hct_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/cam/hct_solver.h -------------------------------------------------------------------------------- /arm9/source/material/cam/viewing_conditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/cam/viewing_conditions.cpp -------------------------------------------------------------------------------- /arm9/source/material/cam/viewing_conditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/cam/viewing_conditions.h -------------------------------------------------------------------------------- /arm9/source/material/palettes/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/palettes/core.cpp -------------------------------------------------------------------------------- /arm9/source/material/palettes/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/palettes/core.h -------------------------------------------------------------------------------- /arm9/source/material/palettes/tones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/palettes/tones.cpp -------------------------------------------------------------------------------- /arm9/source/material/palettes/tones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/palettes/tones.h -------------------------------------------------------------------------------- /arm9/source/material/scheme/scheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/scheme/scheme.cpp -------------------------------------------------------------------------------- /arm9/source/material/scheme/scheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/scheme/scheme.h -------------------------------------------------------------------------------- /arm9/source/material/utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/utils/utils.cpp -------------------------------------------------------------------------------- /arm9/source/material/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/material/utils/utils.h -------------------------------------------------------------------------------- /arm9/source/picoLoaderBootstrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/picoLoaderBootstrap.cpp -------------------------------------------------------------------------------- /arm9/source/picoLoaderBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/picoLoaderBootstrap.h -------------------------------------------------------------------------------- /arm9/source/rng/LinearCongruentialGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/rng/LinearCongruentialGenerator.cpp -------------------------------------------------------------------------------- /arm9/source/rng/LinearCongruentialGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/rng/LinearCongruentialGenerator.h -------------------------------------------------------------------------------- /arm9/source/rng/RandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/rng/RandomGenerator.h -------------------------------------------------------------------------------- /arm9/source/rng/ThreadSafeRandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/rng/ThreadSafeRandomGenerator.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/CoverRepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/CoverRepository.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/CoverRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/CoverRepository.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/BannerListFileRecyclerAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/BannerListFileRecyclerAdapter.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/BannerListFileRecyclerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/BannerListFileRecyclerAdapter.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/CoverFlowFileRecyclerAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/CoverFlowFileRecyclerAdapter.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/CoverFlowFileRecyclerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/CoverFlowFileRecyclerAdapter.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/IconGridFileRecyclerAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/IconGridFileRecyclerAdapter.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/IconGridFileRecyclerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/IconGridFileRecyclerAdapter.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserBannerListDisplayMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserBannerListDisplayMode.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserBannerListDisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserBannerListDisplayMode.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserDisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserDisplayMode.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserDisplayModeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserDisplayModeFactory.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserDisplayModeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserDisplayModeFactory.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserHorizontalCoverFlowDisplayMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserHorizontalCoverFlowDisplayMode.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserHorizontalCoverFlowDisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserHorizontalCoverFlowDisplayMode.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserHorizontalIconGridDisplayMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserHorizontalIconGridDisplayMode.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserHorizontalIconGridDisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserHorizontalIconGridDisplayMode.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserVerticalIconGridDisplayMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserVerticalIconGridDisplayMode.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/DisplayMode/RomBrowserVerticalIconGridDisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/DisplayMode/RomBrowserVerticalIconGridDisplayMode.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileInfo.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileInfo.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileInfoManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileInfoManager.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileInfoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileInfoManager.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileRecyclerAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileRecyclerAdapter.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileRecyclerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileRecyclerAdapter.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/BmpFileCover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/BmpFileCover.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/BmpFileCover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/BmpFileCover.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/CustomFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/CustomFileType.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/ExtensionFileTypeProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/ExtensionFileTypeProvider.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/ExtensionFileTypeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/ExtensionFileTypeProvider.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/FileCover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/FileCover.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/FileCoverBitmapToTiledCopy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/FileCoverBitmapToTiledCopy.s -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/FileIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/FileIcon.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/FileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/FileType.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/FileTypeClassification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/FileTypeClassification.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Folder/FolderFileCover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Folder/FolderFileCover.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Folder/FolderFileType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Folder/FolderFileType.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Folder/FolderFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Folder/FolderFileType.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Gba/GbaFileType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Gba/GbaFileType.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Gba/GbaFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Gba/GbaFileType.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Gba/GbaInternalFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Gba/GbaInternalFileInfo.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Gba/GbaInternalFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Gba/GbaInternalFileInfo.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/IFileTypeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/IFileTypeProvider.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/InternalFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/InternalFileInfo.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Nds/NdsFileIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Nds/NdsFileIcon.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Nds/NdsFileIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Nds/NdsFileIcon.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Nds/NdsFileType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Nds/NdsFileType.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Nds/NdsFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Nds/NdsFileType.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Nds/NdsInternalFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Nds/NdsInternalFileInfo.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Nds/NdsInternalFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Nds/NdsInternalFileInfo.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/Nds/ndsBanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/Nds/ndsBanner.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/NullFileTypeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/NullFileTypeProvider.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/StaticFileCover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/StaticFileCover.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/StaticIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/StaticIcon.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/StaticIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/StaticIcon.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/UnknownFileCover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/UnknownFileCover.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/UnknownFileType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/UnknownFileType.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/FileType/UnknownFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/FileType/UnknownFileType.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/ICoverRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/ICoverRepository.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/IRomBrowserController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/IRomBrowserController.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/RomBrowserController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/RomBrowserController.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/RomBrowserController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/RomBrowserController.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/RomBrowserState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/RomBrowserState.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/RomBrowserStateMachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/RomBrowserStateMachine.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/RomBrowserStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/RomBrowserStateMachine.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/RomBrowserStateTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/RomBrowserStateTrigger.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/SdFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/SdFolder.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/SdFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/SdFolder.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/SdFolderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/SdFolderFactory.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/SdFolderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/SdFolderFactory.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/SdFolderFilterSortParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/SdFolderFilterSortParams.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/SdFolderSortDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/SdFolderSortDirection.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/SdFolderSortType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/SdFolderSortType.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/StateMachineTriggerChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/StateMachineTriggerChecker.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/IRomBrowserViewFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/IRomBrowserViewFactory.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/IThemeFileIconFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/IThemeFileIconFactory.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/CarouselRecyclerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/CarouselRecyclerView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/CarouselRecyclerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/CarouselRecyclerView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialAppBarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialAppBarView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialAppBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialAppBarView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialBannerListItemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialBannerListItemView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialBannerListItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialBannerListItemView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialCoverFlowFileRecyclerAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialCoverFlowFileRecyclerAdapter.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialCoverFlowFileRecyclerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialCoverFlowFileRecyclerAdapter.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialCoverView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialCoverView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialCoverView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialCoverView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialFileIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialFileIcon.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialFileIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialFileIcon.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialFileInfoCardView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialFileInfoCardView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialFileInfoCardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialFileInfoCardView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialFolderIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialFolderIcon.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialGenericFileIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialGenericFileIcon.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialIconGridItemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialIconGridItemView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialIconGridItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialIconGridItemView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialNdsFileIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialNdsFileIcon.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialRomBrowserViewFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialRomBrowserViewFactory.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/Material/MaterialThemeFileIconFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/Material/MaterialThemeFileIconFactory.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomAppBarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomAppBarView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomAppBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomAppBarView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomBannerListItemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomBannerListItemView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomBannerListItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomBannerListItemView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomFileInfoView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomFileInfoView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomFileInfoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomFileInfoView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomIconGridItemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomIconGridItemView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomIconGridItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomIconGridItemView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomRomBrowserViewFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomRomBrowserViewFactory.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/Theme/custom/CustomRomBrowserViewFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/Theme/custom/CustomRomBrowserViewFactory.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/viewModels/DisplaySettingsViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/viewModels/DisplaySettingsViewModel.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/viewModels/RomBrowserAppBarViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/viewModels/RomBrowserAppBarViewModel.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/viewModels/RomBrowserBottomScreenViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/viewModels/RomBrowserBottomScreenViewModel.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/viewModels/RomBrowserViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/viewModels/RomBrowserViewModel.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/viewModels/RomBrowserViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/viewModels/RomBrowserViewModel.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/AppBarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/AppBarView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/AppBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/AppBarView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/BannerListItemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/BannerListItemView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/BannerListItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/BannerListItemView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/BannerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/BannerView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/BannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/BannerView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/BottomSheetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/BottomSheetView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/ChipView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/ChipView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/ChipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/ChipView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/CoverFlowRecyclerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/CoverFlowRecyclerView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/CoverFlowRecyclerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/CoverFlowRecyclerView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/CoverFlowRecyclerViewBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/CoverFlowRecyclerViewBase.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/CoverFlowRecyclerViewBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/CoverFlowRecyclerViewBase.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/CoverView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/CoverView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/CoverView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/CoverView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/DisplaySettingsBottomSheetView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/DisplaySettingsBottomSheetView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/DisplaySettingsBottomSheetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/DisplaySettingsBottomSheetView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/IconButton2DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/IconButton2DView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/IconButton2DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/IconButton2DView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/IconButton3DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/IconButton3DView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/IconButton3DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/IconButton3DView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/IconButtonView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/IconButtonView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/IconButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/IconButtonView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/IconGridItemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/IconGridItemView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/IconGridItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/IconGridItemView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/NdsGameDetailsBottomSheetView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/NdsGameDetailsBottomSheetView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/NdsGameDetailsBottomSheetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/NdsGameDetailsBottomSheetView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/RomBrowserAppBarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/RomBrowserAppBarView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/RomBrowserAppBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/RomBrowserAppBarView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/RomBrowserBottomScreenView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/RomBrowserBottomScreenView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/RomBrowserBottomScreenView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/RomBrowserBottomScreenView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/RomBrowserTopScreenView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/RomBrowserTopScreenView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/RomBrowserTopScreenView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/RomBrowserTopScreenView.h -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/RomBrowserView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/RomBrowserView.cpp -------------------------------------------------------------------------------- /arm9/source/romBrowser/views/RomBrowserView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/romBrowser/views/RomBrowserView.h -------------------------------------------------------------------------------- /arm9/source/rtcIpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/rtcIpc.cpp -------------------------------------------------------------------------------- /arm9/source/rtcIpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/rtcIpc.h -------------------------------------------------------------------------------- /arm9/source/services/process/IProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/process/IProcess.h -------------------------------------------------------------------------------- /arm9/source/services/process/ProcessFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/process/ProcessFactory.h -------------------------------------------------------------------------------- /arm9/source/services/process/ProcessFactory.thumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/process/ProcessFactory.thumb.cpp -------------------------------------------------------------------------------- /arm9/source/services/process/ProcessManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/process/ProcessManager.cpp -------------------------------------------------------------------------------- /arm9/source/services/process/ProcessManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/process/ProcessManager.h -------------------------------------------------------------------------------- /arm9/source/services/settings/AppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/AppSettings.h -------------------------------------------------------------------------------- /arm9/source/services/settings/FileAssociation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/FileAssociation.h -------------------------------------------------------------------------------- /arm9/source/services/settings/IAppSettingsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/IAppSettingsService.h -------------------------------------------------------------------------------- /arm9/source/services/settings/JsonAppSettingsSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/JsonAppSettingsSerializer.h -------------------------------------------------------------------------------- /arm9/source/services/settings/JsonAppSettingsSerializer.thumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/JsonAppSettingsSerializer.thumb.cpp -------------------------------------------------------------------------------- /arm9/source/services/settings/JsonAppSettingsService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/JsonAppSettingsService.cpp -------------------------------------------------------------------------------- /arm9/source/services/settings/JsonAppSettingsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/JsonAppSettingsService.h -------------------------------------------------------------------------------- /arm9/source/services/settings/RomBrowserDisplaySettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/RomBrowserDisplaySettings.h -------------------------------------------------------------------------------- /arm9/source/services/settings/RomBrowserLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/RomBrowserLayout.h -------------------------------------------------------------------------------- /arm9/source/services/settings/RomBrowserSortMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/services/settings/RomBrowserSortMode.h -------------------------------------------------------------------------------- /arm9/source/themes/DefaultFontRepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/DefaultFontRepository.cpp -------------------------------------------------------------------------------- /arm9/source/themes/DefaultFontRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/DefaultFontRepository.h -------------------------------------------------------------------------------- /arm9/source/themes/FontType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/FontType.h -------------------------------------------------------------------------------- /arm9/source/themes/IFontRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/IFontRepository.h -------------------------------------------------------------------------------- /arm9/source/themes/ITheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/ITheme.h -------------------------------------------------------------------------------- /arm9/source/themes/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/Theme.cpp -------------------------------------------------------------------------------- /arm9/source/themes/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/Theme.h -------------------------------------------------------------------------------- /arm9/source/themes/ThemeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/ThemeFactory.cpp -------------------------------------------------------------------------------- /arm9/source/themes/ThemeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/ThemeFactory.h -------------------------------------------------------------------------------- /arm9/source/themes/ThemeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/ThemeInfo.h -------------------------------------------------------------------------------- /arm9/source/themes/ThemeInfoFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/ThemeInfoFactory.h -------------------------------------------------------------------------------- /arm9/source/themes/ThemeInfoFactory.thumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/ThemeInfoFactory.thumb.cpp -------------------------------------------------------------------------------- /arm9/source/themes/ThemeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/ThemeType.h -------------------------------------------------------------------------------- /arm9/source/themes/background/IThemeBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/background/IThemeBackground.h -------------------------------------------------------------------------------- /arm9/source/themes/custom/CustomMainBackground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/custom/CustomMainBackground.cpp -------------------------------------------------------------------------------- /arm9/source/themes/custom/CustomMainBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/custom/CustomMainBackground.h -------------------------------------------------------------------------------- /arm9/source/themes/custom/CustomSubBackground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/custom/CustomSubBackground.cpp -------------------------------------------------------------------------------- /arm9/source/themes/custom/CustomSubBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/custom/CustomSubBackground.h -------------------------------------------------------------------------------- /arm9/source/themes/custom/CustomTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/custom/CustomTheme.cpp -------------------------------------------------------------------------------- /arm9/source/themes/custom/CustomTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/custom/CustomTheme.h -------------------------------------------------------------------------------- /arm9/source/themes/custom/CustomTopBackgroundType.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum class CustomTopBackgroundType 4 | { 5 | Bitmap 6 | }; 7 | -------------------------------------------------------------------------------- /arm9/source/themes/material/MaterialColorScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/material/MaterialColorScheme.h -------------------------------------------------------------------------------- /arm9/source/themes/material/MaterialColorSchemeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/material/MaterialColorSchemeFactory.cpp -------------------------------------------------------------------------------- /arm9/source/themes/material/MaterialColorSchemeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/material/MaterialColorSchemeFactory.h -------------------------------------------------------------------------------- /arm9/source/themes/material/MaterialMainBackground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/material/MaterialMainBackground.cpp -------------------------------------------------------------------------------- /arm9/source/themes/material/MaterialMainBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/material/MaterialMainBackground.h -------------------------------------------------------------------------------- /arm9/source/themes/material/MaterialSubBackground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/material/MaterialSubBackground.cpp -------------------------------------------------------------------------------- /arm9/source/themes/material/MaterialSubBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/material/MaterialSubBackground.h -------------------------------------------------------------------------------- /arm9/source/themes/material/MaterialTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/material/MaterialTheme.cpp -------------------------------------------------------------------------------- /arm9/source/themes/material/MaterialTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/arm9/source/themes/material/MaterialTheme.h -------------------------------------------------------------------------------- /common/core/TickCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/core/TickCounter.cpp -------------------------------------------------------------------------------- /common/core/TickCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/core/TickCounter.h -------------------------------------------------------------------------------- /common/core/mini-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/core/mini-printf.c -------------------------------------------------------------------------------- /common/core/mini-printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/core/mini-printf.h -------------------------------------------------------------------------------- /common/dldiIpcCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/dldiIpcCommand.h -------------------------------------------------------------------------------- /common/dsiSdIpcCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/dsiSdIpcCommand.h -------------------------------------------------------------------------------- /common/ipc/IpcService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/ipc/IpcService.cpp -------------------------------------------------------------------------------- /common/ipc/IpcService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/ipc/IpcService.h -------------------------------------------------------------------------------- /common/ipc/ThreadIpcService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/ipc/ThreadIpcService.cpp -------------------------------------------------------------------------------- /common/ipc/ThreadIpcService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/ipc/ThreadIpcService.h -------------------------------------------------------------------------------- /common/ipcChannels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/ipcChannels.h -------------------------------------------------------------------------------- /common/logger/ILogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/ILogger.h -------------------------------------------------------------------------------- /common/logger/IOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/IOutputStream.h -------------------------------------------------------------------------------- /common/logger/NitroEmulatorOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/NitroEmulatorOutputStream.cpp -------------------------------------------------------------------------------- /common/logger/NitroEmulatorOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/NitroEmulatorOutputStream.h -------------------------------------------------------------------------------- /common/logger/NocashOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/NocashOutputStream.h -------------------------------------------------------------------------------- /common/logger/NullLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/NullLogger.h -------------------------------------------------------------------------------- /common/logger/NullOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/NullOutputStream.h -------------------------------------------------------------------------------- /common/logger/PicoAgbAdapterOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/PicoAgbAdapterOutputStream.cpp -------------------------------------------------------------------------------- /common/logger/PicoAgbAdapterOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/PicoAgbAdapterOutputStream.h -------------------------------------------------------------------------------- /common/logger/PlainLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/PlainLogger.h -------------------------------------------------------------------------------- /common/logger/ThreadSafeLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/logger/ThreadSafeLogger.h -------------------------------------------------------------------------------- /common/picoAgbAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/picoAgbAdapter.h -------------------------------------------------------------------------------- /common/picoLoader7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/picoLoader7.h -------------------------------------------------------------------------------- /common/sharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/sharedMemory.h -------------------------------------------------------------------------------- /common/soundIpcCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/common/soundIpcCommand.h -------------------------------------------------------------------------------- /docs/Covers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/Covers.md -------------------------------------------------------------------------------- /docs/FileAssociations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/FileAssociations.md -------------------------------------------------------------------------------- /docs/Themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/Themes.md -------------------------------------------------------------------------------- /docs/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/Usage.md -------------------------------------------------------------------------------- /docs/images/CoverExample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/images/CoverExample.bmp -------------------------------------------------------------------------------- /docs/images/Coverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/images/Coverflow.png -------------------------------------------------------------------------------- /docs/images/Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/images/Horizontal.png -------------------------------------------------------------------------------- /docs/images/HorizontalCustom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/images/HorizontalCustom.png -------------------------------------------------------------------------------- /docs/images/List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/images/List.png -------------------------------------------------------------------------------- /docs/images/SettingsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/images/SettingsPage.png -------------------------------------------------------------------------------- /docs/images/Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/docs/images/Vertical.png -------------------------------------------------------------------------------- /icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/icon.bmp -------------------------------------------------------------------------------- /licenses/ArduinoJson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/licenses/ArduinoJson.txt -------------------------------------------------------------------------------- /licenses/Material.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/licenses/Material.txt -------------------------------------------------------------------------------- /licenses/dsi_sdmmc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/licenses/dsi_sdmmc.txt -------------------------------------------------------------------------------- /licenses/mini-printf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/licenses/mini-printf.txt -------------------------------------------------------------------------------- /licenses/newlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/licenses/newlib.txt -------------------------------------------------------------------------------- /licenses/tlsf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LNH-team/pico-launcher/HEAD/licenses/tlsf.txt --------------------------------------------------------------------------------