Skip to content

Commit

Permalink
Try fixing overdrawing
Browse files Browse the repository at this point in the history
  • Loading branch information
Cacodemon345 authored Feb 1, 2024
1 parent 10de00c commit 2dba922
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/vid_c&t_69000.c
Original file line number Diff line number Diff line change
Expand Up @@ -861,11 +861,11 @@ chips_69000_setup_bitblt(chips_69000_t* chips)
chips_69000_process_pixel(chips, pixel);

chips->bitblt_running.x += chips->bitblt_running.x_dir;
} while ((chips->bitblt_running.count_x++) < chips->bitblt_running.actual_destination_width);
} while ((++chips->bitblt_running.count_x) < chips->bitblt_running.actual_destination_width);

chips->bitblt_running.y += chips->bitblt_running.y_dir;
chips->bitblt_running.count_x = 0;
} while ((chips->bitblt_running.count_y++) < chips->bitblt_running.actual_destination_height);
} while ((++chips->bitblt_running.count_y) < chips->bitblt_running.actual_destination_height);

chips_69000_bitblt_interrupt(chips);
}
Expand Down

0 comments on commit 2dba922

Please sign in to comment.