mirror of https://github.com/snes9xgit/snes9x.git
Use OpenBus for these two.
This commit is contained in:
parent
c4cf40c509
commit
7faed1fa2b
4
ppu.cpp
4
ppu.cpp
|
@ -1416,12 +1416,12 @@ uint8 S9xGetPPU (uint16 Address)
|
||||||
case 0x21c2:
|
case 0x21c2:
|
||||||
if (Model->_5C77 == 2)
|
if (Model->_5C77 == 2)
|
||||||
return (0x20);
|
return (0x20);
|
||||||
return (PPU.OpenBus2);
|
return (OpenBus);
|
||||||
|
|
||||||
case 0x21c3:
|
case 0x21c3:
|
||||||
if (Model->_5C77 == 2)
|
if (Model->_5C77 == 2)
|
||||||
return (0);
|
return (0);
|
||||||
return (PPU.OpenBus2);
|
return (OpenBus);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return (OpenBus);
|
return (OpenBus);
|
||||||
|
|
Loading…
Reference in New Issue