File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class Mod
22
22
uint32_t setIndexWarpEntrance (void *, uint32_t );
23
23
24
24
private:
25
- void (*mPFN_makeKey_trampoline )() = nullptr ;
25
+ void (*mPFN_marioStMain_trampoline )() = nullptr ;
26
26
void (*mPFN_BattlePadManager_trampoline )() = nullptr ;
27
27
int32_t (*mPFN_winRootMain_trampoline )(void *) = nullptr ;
28
28
bool (*mPFN_pouchRemoveItemIndex_trampoline )(int16_t , uint32_t ) = nullptr ;
Original file line number Diff line number Diff line change @@ -712,7 +712,7 @@ void Mod::run()
712
712
}
713
713
714
714
// Call original function
715
- mPFN_makeKey_trampoline ();
715
+ mPFN_marioStMain_trampoline ();
716
716
}
717
717
718
718
}
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ void Mod::init()
40
40
initAddressOverwrites ();
41
41
actionCommandsTimingsInit ();
42
42
43
- mPFN_makeKey_trampoline = patch::hookFunction (ttyd::mariost::marioStMain, []()
43
+ mPFN_marioStMain_trampoline = patch::hookFunction (ttyd::mariost::marioStMain, []()
44
44
{
45
45
gMod ->run ();
46
46
});
You can’t perform that action at this time.
0 commit comments