1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-30 22:29:56 +00:00

Remove last of the direct printf'ing.

This commit is contained in:
Thomas Harte 2021-09-30 02:42:59 -04:00
parent b7b13e20d1
commit a282a51673

View File

@ -202,9 +202,8 @@ bool Blitter::advance() {
}
} else {
// Copy mode.
printf("!!! Copy [%d %d%d%d] %08x\n", int32_t(direction_), inclusive_fill_, exclusive_fill_, fill_carry_, pointer_[3]);
// Quick hack: do the entire action atomically. Isn't life fabulous?
// Quick hack: do the entire action atomically.
for(int y = 0; y < height_; y++) {
for(int x = 0; x < width_; x++) {
if(channel_enables_[0]) {