Called when *outside* of CpuExecute()
| 467 | |
| 468 | // Called when *outside* of CpuExecute() |
| 469 | bool Video::VideoGetVblBarEx(const uint32_t dwCyclesThisFrame) |
| 470 | { |
| 471 | if (g_bFullSpeed) |
| 472 | { |
| 473 | // Ensure that NTSC video-scanner gets updated during full-speed, so video screen can be redrawn during Apple II VBL |
| 474 | NTSC_VideoClockResync(dwCyclesThisFrame); |
| 475 | } |
| 476 | |
| 477 | return NTSC_GetVblBar(); |
| 478 | } |
| 479 | |
| 480 | // Called when *inside* CpuExecute() |
| 481 | bool Video::VideoGetVblBar(const uint32_t uExecutedCycles) |
no test coverage detected