mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
core, fix sram access in ssf2 mapper
credits go to madmonkey1907 for finding this
This commit is contained in:
parent
54e514e85d
commit
e370f4d6ad
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ void carthw_ssf2_write8(u32 a, u32 d)
|
|||
{
|
||||
u32 target, base;
|
||||
|
||||
if ((a & ~0x0e) != 0xa130f1) {
|
||||
if ((a & ~0x0e) != 0xa130f1 || a == 0xa130f1) {
|
||||
PicoWrite8_io(a, d);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue