Skip to content

Commit

Permalink
Minor line fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cacodemon345 committed Feb 6, 2024
1 parent 614241b commit df91185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/vid_c&t_69000.c
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,7 @@ chips_69000_bitblt_write(chips_69000_t* chips, uint8_t data) {
chips->bitblt_running.bytes_port[chips->bitblt_running.bytes_written++] = data;
if (chips->bitblt_running.bitblt.monochrome_source_alignment == 0) {
chips_69000_process_mono_data_non_qword(chips, chips->bitblt_running.bytes_port[0]);
chips->bitblt_running.bytes_written &= 7;
chips->bitblt_running.bytes_written = 0;
} else if (chips->bitblt_running.bitblt.monochrome_source_alignment == 3
&& chips->bitblt_running.bytes_written == 2) {
chips->bitblt_running.bytes_written = 0;
Expand Down

0 comments on commit df91185

Please sign in to comment.