Skip to content

Commit

Permalink
Fix #1775
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Feb 24, 2025
1 parent 92f0eac commit 9526b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion retail/cardengine/arm9/source/cardengine.c
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ void inGameMenu(s32* exRegisters) {

*(u32*)(igmLocation + IGM_TEXT_SIZE_ALIGNED) = (u32)sharedAddr;
volatile u32 (*inGameMenu)(s32*, u32, s32*) = (volatile void*)igmLocation + IGM_TEXT_SIZE_ALIGNED + 0x10;
const u32 res = (*inGameMenu)(&ce9->mainScreen, igmLocation, exRegisters);
const u32 res = (*inGameMenu)(&ce9->mainScreen, (u32)ce9, exRegisters);

opened = false;

Expand Down

0 comments on commit 9526b4f

Please sign in to comment.