This seems to make the VRAM access quirk work in Wario Land II as well as the testROMs
This commit is contained in:
parent
5a7c198d46
commit
9768abbb35
|
@ -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.
Loading…
Reference in New Issue