mirror of https://github.com/mgba-emu/mgba.git
GBA: Add savegame override for Crash Bandicoot 2
This commit is contained in:
parent
9c030fb553
commit
8cc5339b1e
1
CHANGES
1
CHANGES
|
@ -31,6 +31,7 @@ Bugfixes:
|
|||
- GBA: Fix IRQs firing after already being cleared
|
||||
- All: Fix fullscreen config option being ignored
|
||||
- GBA BIOS: Implement BitUnPack
|
||||
- GBA: Add savegame override for Crash Bandicoot 2
|
||||
Misc:
|
||||
- SDL: Remove scancode key input
|
||||
- GBA Video: Clean up unused timers
|
||||
|
|
|
@ -29,6 +29,10 @@ static const struct GBACartridgeOverride _overrides[] = {
|
|||
{ "U32E", SAVEDATA_EEPROM, HW_RTC | HW_LIGHT_SENSOR, IDLE_LOOP_NONE, false },
|
||||
{ "U32P", SAVEDATA_EEPROM, HW_RTC | HW_LIGHT_SENSOR, IDLE_LOOP_NONE, false },
|
||||
|
||||
// Crash Bandicoot 2 - N-Tranced
|
||||
{ "AC8E", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false },
|
||||
{ "AC8P", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false },
|
||||
|
||||
// Dragon Ball Z - The Legacy of Goku
|
||||
{ "ALGP", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false },
|
||||
|
||||
|
|
Loading…
Reference in New Issue