1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-11 04:28:58 +00:00

Merge pull request #677 from TomHarte/SyncDisturbance

Corrects accidental dropping of pixel residue.
This commit is contained in:
Thomas Harte 2019-11-17 18:47:27 -05:00 committed by GitHub
commit 25da8b7787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,7 +171,7 @@ void Video::run_for(HalfCycles duration) {
}
// Output the start of the next column, if necessary.
if(start_column != end_column && (x_ + run_length) & 7) {
if((x_ + run_length) & 7) {
shifter_.output_pixels((x_ + run_length) & 7, output_bpp_);
}
}