1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Restores vsync active.

This commit is contained in:
Thomas Harte 2019-12-29 22:03:36 -05:00
parent 6449403f6a
commit e23d1a2958

View File

@ -343,7 +343,7 @@ void Video::advance(HalfCycles duration) {
if(vertical_.sync != vsync) {
// Schedule change in outwardly-visible hsync line.
add_event(vsync_delay_period - integer_duration, horizontal_.sync ? Event::Type::SetVsync : Event::Type::ResetVsync);
add_event(vsync_delay_period - integer_duration, vertical_.sync ? Event::Type::SetVsync : Event::Type::ResetVsync);
}
}
}