Skip to content

Commit

Permalink
Show SRLoader logo if last ran ROM is skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Mar 27, 2018
1 parent e8dd2ab commit b029bef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions titleandsettings/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit b029bef

Please sign in to comment.