mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
core vdp, fix regression (switching V30->V28 in lines 225-239)
This commit is contained in:
parent
9ec3b5ac0e
commit
572cf80e38
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ static int PicoFrameHints(void)
|
||||||
pv->v_counter &= 0xff;
|
pv->v_counter &= 0xff;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (y == (pv->reg[1] & 8 ? 240 : 224))
|
if ((y == 224 && !(pv->reg[1] & 8)) || y == 240)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
PAD_DELAY();
|
PAD_DELAY();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue