NTSC: Change to NTSC_GetVblBar() from NTSC_GetVideoVert().

Debugger: fix video scanner position's visibility (green colour) for SHR - didn't work for lines $C0-C7.
This commit is contained in:
tomcw
2023-01-14 14:30:12 +00:00
parent d63a31a043
commit 597cea1d86
4 changed files with 10 additions and 11 deletions
+2 -2
View File
@@ -455,7 +455,7 @@ bool Video::VideoGetVblBarEx(const DWORD dwCyclesThisFrame)
NTSC_VideoClockResync(dwCyclesThisFrame);
}
return NTSC_GetVideoVert() < kVDisplayableScanLines;
return NTSC_GetVblBar();
}
// Called when *inside* CpuExecute()
@@ -467,7 +467,7 @@ bool Video::VideoGetVblBar(const DWORD uExecutedCycles)
NTSC_VideoClockResync(CpuGetCyclesThisVideoFrame(uExecutedCycles));
}
return NTSC_GetVideoVert() < kVDisplayableScanLines;
return NTSC_GetVblBar();
}
//===========================================================================