From 74bbc057bb0046e0f2effd86e981c7e99863c465 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 2 Jan 2016 18:59:41 -0800 Subject: [PATCH] GBA: Fix Iridion II savetype (fixes #196) --- CHANGES | 1 + src/gba/context/overrides.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGES b/CHANGES index ccd8b7789..a1dd5ce69 100644 --- a/CHANGES +++ b/CHANGES @@ -21,6 +21,7 @@ Bugfixes: - GBA Memory: Fix DMAs triggering two cycles early - GBA Hardware: Fix GPIO on big endian - Util: Fix excessive memory allocation when decoding a PNG + - GBA: Fix Iridion II savetype Misc: - Qt: Window size command line options are now supported - Qt: Increase usability of key mapper diff --git a/src/gba/context/overrides.c b/src/gba/context/overrides.c index 6a4faf82f..80128e887 100644 --- a/src/gba/context/overrides.c +++ b/src/gba/context/overrides.c @@ -46,6 +46,10 @@ static const struct GBACartridgeOverride _overrides[] = { // F-Zero - Climax { "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 { "AGFE", SAVEDATA_FLASH512, HW_NONE, 0x801353A },