1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-29 16:55:59 +00:00

Resolves failure to advance video address when output is blocked.

This commit is contained in:
Thomas Harte 2020-09-15 22:20:06 -04:00
parent b831b31382
commit 5651ef606d

View File

@ -115,6 +115,8 @@ void Video::run_for(HalfCycles duration) {
pixel_buffer_ += 16;
}
} else {
video_address_ += size_t(final_pixel_word - first_word);
}
if(final_pixel_word == 32) {