Skip to content

Commit

Permalink
Fix in-game menu not exiting properly
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Mar 11, 2022
1 parent e9cc776 commit 6c34f84
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion retail/cardengine/arm7/source/inGameMenu.thumb.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ void inGameMenu(void) {
break;
}

sharedAddr[4] = 0x554E454D; // MENU
if (!exitMenu) {
sharedAddr[4] = 0x554E454D; // MENU
}
}
}

Expand Down
4 changes: 3 additions & 1 deletion retail/cardenginei/arm7/source/inGameMenu.thumb.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ void inGameMenu(void) {
break;
}

sharedAddr[4] = 0x554E454D; // MENU
if (!exitMenu) {
sharedAddr[4] = 0x554E454D; // MENU
}
}
}

Expand Down
4 changes: 3 additions & 1 deletion retail/cardenginei/arm7_dsiware/source/inGameMenu.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ void inGameMenu(void) {
break;
}

sharedAddr[4] = 0x554E454D; // MENU
if (!exitMenu) {
sharedAddr[4] = 0x554E454D; // MENU
}
}
}

Expand Down

0 comments on commit 6c34f84

Please sign in to comment.