[Core/MD] fixed SSF2 mapper regression

This commit is contained in:
EkeEke 2014-10-15 23:22:54 +02:00
parent 4201b2dac5
commit 6a118b1238
4 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 MiB

After

Width:  |  Height:  |  Size: 3.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 MiB

After

Width:  |  Height:  |  Size: 3.8 MiB

View File

@ -950,7 +950,7 @@ static void mapper_512k_w(uint32 address, uint32 data)
static void mapper_ssf2_w(uint32 address, uint32 data)
{
/* only banks 1-7 are remappable, bank 0 remains unchanged */
if (address)
if (address & 0x0E)
{
mapper_512k_w(address, data);
}