Make memory read return 0x90 instead of 0xFF in the impossible(?) case where something read from an impossible location

This commit is contained in:
Godzil 2019-09-20 16:30:15 +01:00
parent 348d3774fc
commit 92ee27e57e

View File

@ -227,7 +227,7 @@ BYTE cpu_readmem20(DWORD addr)
return ws_rom[temp];
}
return(0xff);
return(0x90);
}
////////////////////////////////////////////////////////////////////////////////
//