diff --git a/titleandsettings/arm9/source/main.cpp b/titleandsettings/arm9/source/main.cpp index dde4932fb5..c44b8f6bb8 100644 --- a/titleandsettings/arm9/source/main.cpp +++ b/titleandsettings/arm9/source/main.cpp @@ -419,9 +419,9 @@ int main(int argc, char **argv) { char vertext[12]; // snprintf(vertext, sizeof(vertext), "Ver %d.%d.%d ", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH); // Doesn't work :( - snprintf(vertext, sizeof(vertext), "Ver %d.%d.%d ", 3, 4, 1); + snprintf(vertext, sizeof(vertext), "Ver %d.%d.%d ", 3, 4, 2); - if (showlogo) { + if (autorun || showlogo) { graphicsInit(); fontInit(); fadeType = true; @@ -436,7 +436,7 @@ int main(int argc, char **argv) { screenmode = 1; gotosettings = false; SaveSettings(); - } else if (showlogo) { + } else if (autorun || showlogo) { unsigned int * SCFG_ROM=(unsigned int*)0x4004000; unsigned int * SCFG_CLK=(unsigned int*)0x4004004; unsigned int * SCFG_EXT=(unsigned int*)0x4004008;