Edge case when setting vtimer only on same scanline

This commit is contained in:
OV2 2018-06-02 22:48:04 +02:00
parent ac65e94df4
commit 55cf0c287f
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ static int CyclesUntilNext (int hc, int vc)
}
else
{
if (vc == vpos && hc > CPU.Cycles)
if (vc == vpos && (hc > CPU.Cycles || !PPU.HTimerEnabled))
{
return hc;
}