GBA: Add overrides for DBZ: Legacy of Goku II and Ueki no Housoku

This commit is contained in:
Jeffrey Pfau 2016-06-19 15:05:48 -07:00
parent 415298ebcd
commit fb7ecb8079
2 changed files with 9 additions and 0 deletions

View File

@ -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:

View File

@ -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 },