mirror of https://github.com/mgba-emu/mgba.git
GBA Cheats: Fix PARv3 Thumb hooks
This commit is contained in:
parent
f3ec9db9d7
commit
81098060aa
1
CHANGES
1
CHANGES
|
@ -34,6 +34,7 @@ Other fixes:
|
||||||
- Qt: Fix menu bar staying hidden in full screen (fixes mgba.io/i/317)
|
- Qt: Fix menu bar staying hidden in full screen (fixes mgba.io/i/317)
|
||||||
- GB SIO: Fix lockstep failing games aren't reloaded
|
- GB SIO: Fix lockstep failing games aren't reloaded
|
||||||
- Core: Fix crash when exiting game with cheats loaded
|
- Core: Fix crash when exiting game with cheats loaded
|
||||||
|
- GBA Cheats: Fix PARv3 Thumb hooks
|
||||||
Misc:
|
Misc:
|
||||||
- GBA Savedata: EEPROM performance fixes
|
- GBA Savedata: EEPROM performance fixes
|
||||||
- GBA Savedata: Automatically map 1Mbit Flash files as 1Mbit Flash
|
- GBA Savedata: Automatically map 1Mbit Flash files as 1Mbit Flash
|
||||||
|
|
|
@ -284,7 +284,7 @@ bool GBACheatAddProActionReplayRaw(struct GBACheatSet* cheats, uint32_t op1, uin
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
cheats->hook = malloc(sizeof(*cheats->hook));
|
cheats->hook = malloc(sizeof(*cheats->hook));
|
||||||
cheats->hook->address = BASE_CART0 | (op1 & (SIZE_CART0 - 1));
|
cheats->hook->address = BASE_CART0 | (op1 & (SIZE_CART0 - 2));
|
||||||
cheats->hook->mode = MODE_THUMB;
|
cheats->hook->mode = MODE_THUMB;
|
||||||
cheats->hook->refs = 1;
|
cheats->hook->refs = 1;
|
||||||
cheats->hook->reentries = 0;
|
cheats->hook->reentries = 0;
|
||||||
|
|
Loading…
Reference in New Issue