mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-24 10:09:21 +01:00
add option to disable splash-screen in nand-loader (enabled by default)
This commit is contained in:
parent
9f2c3ea263
commit
10e9932bf1
@ -28,6 +28,7 @@ struct menu entryList[] = {
|
||||
{ "Force NTSC", &loaderCfg.forceNtsc },
|
||||
{ "Force HDTV", &loaderCfg.forceHdtv },
|
||||
{ "Patch Video Mode", &loaderCfg.patchVmode },
|
||||
{ "Show Splash", &loaderCfg.showSplash },
|
||||
};
|
||||
|
||||
/* Macros */
|
||||
|
@ -11,6 +11,9 @@ struct config {
|
||||
|
||||
/* Video mode patching */
|
||||
bool patchVmode;
|
||||
|
||||
/* Splash screen */
|
||||
bool showSplash;
|
||||
};
|
||||
|
||||
/* NANDLoader configuration */
|
||||
|
@ -60,7 +60,8 @@ int main(int argc, char **argv)
|
||||
Menu();
|
||||
|
||||
/* Draw loading image */
|
||||
Gui_DrawLoading();
|
||||
if(loaderCfg.showSplash)
|
||||
Gui_DrawLoading();
|
||||
|
||||
/* Execute application */
|
||||
Loader_Execute();
|
||||
|
Loading…
Reference in New Issue
Block a user