mirror of https://github.com/mgba-emu/mgba.git
GBA: Fix Iridion II savetype (fixes #196)
This commit is contained in:
parent
656260c129
commit
74bbc057bb
1
CHANGES
1
CHANGES
|
@ -21,6 +21,7 @@ Bugfixes:
|
||||||
- GBA Memory: Fix DMAs triggering two cycles early
|
- GBA Memory: Fix DMAs triggering two cycles early
|
||||||
- GBA Hardware: Fix GPIO on big endian
|
- GBA Hardware: Fix GPIO on big endian
|
||||||
- Util: Fix excessive memory allocation when decoding a PNG
|
- Util: Fix excessive memory allocation when decoding a PNG
|
||||||
|
- GBA: Fix Iridion II savetype
|
||||||
Misc:
|
Misc:
|
||||||
- Qt: Window size command line options are now supported
|
- Qt: Window size command line options are now supported
|
||||||
- Qt: Increase usability of key mapper
|
- Qt: Increase usability of key mapper
|
||||||
|
|
|
@ -46,6 +46,10 @@ static const struct GBACartridgeOverride _overrides[] = {
|
||||||
// F-Zero - Climax
|
// F-Zero - Climax
|
||||||
{ "BFTJ", SAVEDATA_FLASH1M, HW_NONE, IDLE_LOOP_NONE },
|
{ "BFTJ", SAVEDATA_FLASH1M, HW_NONE, IDLE_LOOP_NONE },
|
||||||
|
|
||||||
|
// Iridion II
|
||||||
|
{ "AI2E", SAVEDATA_FORCE_NONE, HW_NONE, IDLE_LOOP_NONE },
|
||||||
|
{ "AI2P", SAVEDATA_FORCE_NONE, HW_NONE, IDLE_LOOP_NONE },
|
||||||
|
|
||||||
// Golden Sun: The Lost Age
|
// Golden Sun: The Lost Age
|
||||||
{ "AGFE", SAVEDATA_FLASH512, HW_NONE, 0x801353A },
|
{ "AGFE", SAVEDATA_FLASH512, HW_NONE, 0x801353A },
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue