Added override for Goomba Color.

This commit is contained in:
profi200 2020-06-18 22:28:49 +02:00
parent 28756c24df
commit c9cd1c6eea
No known key found for this signature in database
GPG Key ID: 17B42AE5911139F3
1 changed files with 2 additions and 1 deletions

View File

@ -82,6 +82,7 @@ static u16 checkSaveOverride(u32 gameCode)
} overrideLut[] =
{
{"\0\0\0\0", SAVE_TYPE_SRAM_256k}, // Homebrew.
{"GMB\0", SAVE_TYPE_SRAM_256k}, // Goomba Color (Homebrew).
{"AA2\0", SAVE_TYPE_EEPROM_64k}, // Super Mario Advance 2.
};
@ -119,7 +120,7 @@ static u16 tryDetectSaveType(u32 romSize)
{
static const struct
{
char *str;
const char *str;
u16 saveType;
} saveTypeLut[25] =
{