diff --git a/CHANGES b/CHANGES index 5f42c8cc3..363313b12 100644 --- a/CHANGES +++ b/CHANGES @@ -51,6 +51,7 @@ Misc: - ARM7: Clean up instruction decoding for future expandability - Debugger: CLI debugger now exits when end-of-stream is reached - VFS: VFile.sync now updates modified time + - GBA: Add overrides for DBZ: Legacy of Goku II and Ueki no Housoku 0.4.0: (2016-02-02) Features: diff --git a/src/gba/overrides.c b/src/gba/overrides.c index a2f70c7fe..339a3cb52 100644 --- a/src/gba/overrides.c +++ b/src/gba/overrides.c @@ -32,6 +32,11 @@ static const struct GBACartridgeOverride _overrides[] = { // Dragon Ball Z - The Legacy of Goku { "ALGP", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false }, + // Dragon Ball Z - The Legacy of Goku II + { "ALFJ", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false }, + { "ALFE", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false }, + { "ALFP", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false }, + // Dragon Ball Z - Taiketsu { "BDBE", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false }, { "BDBP", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false }, @@ -151,6 +156,9 @@ static const struct GBACartridgeOverride _overrides[] = { // Top Gun - Combat Zones { "A2YE", SAVEDATA_FORCE_NONE, HW_NONE, IDLE_LOOP_NONE, false }, + // Ueki no Housoku - Jingi Sakuretsu! Nouryokusha Battle + { "BUHJ", SAVEDATA_EEPROM, HW_NONE, IDLE_LOOP_NONE, false }, + // Wario Ware Twisted { "RZWJ", SAVEDATA_SRAM, HW_RUMBLE | HW_GYRO, IDLE_LOOP_NONE, false }, { "RZWE", SAVEDATA_SRAM, HW_RUMBLE | HW_GYRO, IDLE_LOOP_NONE, false },