mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-04-20 15:17:50 +00:00
Debugger: Fix for bpv when in full-speed (#1164)
This commit is contained in:
@@ -1350,7 +1350,9 @@ int CheckBreakpointsVideo()
|
||||
if (pBP->eSource != BP_SRC_VIDEO_SCANNER)
|
||||
continue;
|
||||
|
||||
if (_CheckBreakpointValue(pBP, g_nVideoClockVert))
|
||||
uint16_t vert, horz;
|
||||
NTSC_GetVideoHVForDebugger(vert, horz); // update g_nVideoClockHorz/g_nVideoClockVert - needed for when in fullspeed (GH#1164)
|
||||
if (_CheckBreakpointValue(pBP, vert))
|
||||
{
|
||||
bBreakpointHit = BP_HIT_VIDEO_POS;
|
||||
pBP->bEnabled = false; // Disable, otherwise it'll trigger many times on this scan-line
|
||||
|
||||
Reference in New Issue
Block a user