mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-09 15:39:08 +00:00
Merge pull request #677 from TomHarte/SyncDisturbance
Corrects accidental dropping of pixel residue.
This commit is contained in:
commit
25da8b7787
@ -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_);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user