genplusgx: Fix #548

This commit is contained in:
alyosha-tas 2017-04-13 15:52:09 -04:00 committed by GitHub
parent 3965af851f
commit d2905715b6
1 changed files with 14 additions and 0 deletions

View File

@ -175,6 +175,20 @@ void sram_init()
sram.end = 0x203fff;
}
}
else if (strstr(rominfo.product, "T-50166") != NULL)
{
/* Might and Magic Gates to Another World */
sram.on = 1;
sram.start = 0x200001;
sram.end = 0x203fff;
}
else if (strstr(rominfo.international, "MIGHT & MAGIC III") != NULL)
{
/* Might and Magic III - Isles of Terra (USA) (Proto) */
sram.on = 1;
sram.start = 0x200001;
sram.end = 0x203fff;
}
/* auto-detect games which need disabled backup RAM */
else if (strstr(rominfo.product,"T-113016") != NULL)