mirror of https://github.com/mgba-emu/mgba.git
GBA: Fix autodetect problems with some bad dumps of Super Mario Advance 2
This commit is contained in:
parent
05e9175fc2
commit
a32f17b4bb
1
CHANGES
1
CHANGES
|
@ -14,6 +14,7 @@ Bugfixes:
|
||||||
- GBA Video: Fix edge case with sprite blend modes and semitransparency
|
- GBA Video: Fix edge case with sprite blend modes and semitransparency
|
||||||
- GBA Video: Fix objwin and blending interaction on sprites
|
- GBA Video: Fix objwin and blending interaction on sprites
|
||||||
- GBA Video: Fix OBJ semitransparency improperly interacting with other blending ops
|
- GBA Video: Fix OBJ semitransparency improperly interacting with other blending ops
|
||||||
|
- GBA: Fix autodetect problems with some bad dumps of Super Mario Advance 2
|
||||||
Misc:
|
Misc:
|
||||||
- Qt: Remove useless help icons in dialogs
|
- Qt: Remove useless help icons in dialogs
|
||||||
- GBA: Attempting to save a screenshot-style savestate should be allowed without libpng
|
- GBA: Attempting to save a screenshot-style savestate should be allowed without libpng
|
||||||
|
|
|
@ -124,7 +124,7 @@ static const struct GBACartridgeOverride _overrides[] = {
|
||||||
// Super Mario Advance 2
|
// Super Mario Advance 2
|
||||||
{ "AA2J", SAVEDATA_EEPROM, HW_NONE, 0x800052E },
|
{ "AA2J", SAVEDATA_EEPROM, HW_NONE, 0x800052E },
|
||||||
{ "AA2E", SAVEDATA_EEPROM, HW_NONE, 0x800052E },
|
{ "AA2E", SAVEDATA_EEPROM, HW_NONE, 0x800052E },
|
||||||
{ "AA2P", SAVEDATA_EEPROM, HW_NONE, 0x800052E },
|
{ "AA2P", SAVEDATA_AUTODETECT, HW_NONE, 0x800052E },
|
||||||
|
|
||||||
// Super Mario Advance 3
|
// Super Mario Advance 3
|
||||||
{ "A3AJ", SAVEDATA_EEPROM, HW_NONE, 0x8002B9C },
|
{ "A3AJ", SAVEDATA_EEPROM, HW_NONE, 0x8002B9C },
|
||||||
|
|
Loading…
Reference in New Issue