mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 21:05:12 +01:00
[Core/MD] fixed SSF2 mapper regression
This commit is contained in:
parent
4201b2dac5
commit
6a118b1238
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 |
@ -950,7 +950,7 @@ static void mapper_512k_w(uint32 address, uint32 data)
|
|||||||
static void mapper_ssf2_w(uint32 address, uint32 data)
|
static void mapper_ssf2_w(uint32 address, uint32 data)
|
||||||
{
|
{
|
||||||
/* only banks 1-7 are remappable, bank 0 remains unchanged */
|
/* only banks 1-7 are remappable, bank 0 remains unchanged */
|
||||||
if (address)
|
if (address & 0x0E)
|
||||||
{
|
{
|
||||||
mapper_512k_w(address, data);
|
mapper_512k_w(address, data);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user