mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-09-18 05:02:37 +02:00
Add support for custom BMP icons and custom NDS banners for games and folders. Closes #53 and Closes #62
This commit is contained in:
@@ -143,6 +143,16 @@ void RomBrowserController::HandleNavigateTrigger()
|
||||
_coverRepository = std::make_unique<CoverRepository>();
|
||||
_coverRepository->Initialize();
|
||||
}
|
||||
if (!_iconRepository)
|
||||
{
|
||||
_iconRepository = std::make_unique<IconRepository>();
|
||||
_iconRepository->Initialize();
|
||||
}
|
||||
if (!_bannerRepository)
|
||||
{
|
||||
_bannerRepository = std::make_unique<BannerRepository>();
|
||||
_bannerRepository->Initialize();
|
||||
}
|
||||
if (!_cheatRepository)
|
||||
{
|
||||
_cheatRepository = UsrCheatRepositoryFactory().FromUsrCheatDat("/_pico/usrcheat.dat");
|
||||
|
||||
Reference in New Issue
Block a user