Skip to content

Commit

Permalink
genplusgx: Fix #548
Browse files Browse the repository at this point in the history
  • Loading branch information
alyosha-tas committed Apr 13, 2017
1 parent 3965af8 commit d290571
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions genplus-gx32/core/cart_hw/sram.c
Expand Up @@ -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)
Expand Down

0 comments on commit d290571

Please sign in to comment.