This seems to make the VRAM access quirk work in Wario Land II as well as the testROMs

This commit is contained in:
TiKevin83 2020-05-22 09:43:37 -04:00
parent 5a7c198d46
commit 9768abbb35
2 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ bool LCD::vramExactlyReadable(unsigned long const cc) {
if (vramHasBeenExactlyRead) {
return false;
}
if ((cc + 2 + isDoubleSpeed() > m0TimeOfCurrentLine(cc)) && (cc + 2 + isDoubleSpeed() < m0TimeOfCurrentLine(cc) + 4)) {
if (cc + 2 + isDoubleSpeed() == m0TimeOfCurrentLine(cc)) {
vramHasBeenExactlyRead = true;
}
return cc + 2 + isDoubleSpeed() == m0TimeOfCurrentLine(cc);

Binary file not shown.