From e5a4f7271a745215babf64829924a47240a022ba Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Tue, 15 Nov 2016 13:39:40 -0800 Subject: [PATCH] GBA: Add savegame override for Crash Bandicoot 2 --- CHANGES | 1 + src/gba/overrides.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGES b/CHANGES index 2ed99008a..eca96e19d 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Bugfixes: - Qt: Fix Qt Multimedia audio driver on big endian - GBA: Fix IRQs firing after already being cleared - All: Fix fullscreen config option being ignored + - GBA: Add savegame override for Crash Bandicoot 2 Misc: - PSP2: Improved controller rumble - GB, GBA: Prevent loading null ROMs diff --git a/src/gba/overrides.c b/src/gba/overrides.c index d9c45205f..c7783dcea 100644 --- a/src/gba/overrides.c +++ b/src/gba/overrides.c @@ -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 },