1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Fix use of bool.

This commit is contained in:
Thomas Harte 2022-07-30 21:02:44 -04:00
parent 82476bdabe
commit 4fb9dec381

View File

@ -346,7 +346,7 @@ bool Blitter::advance_dma() {
x_ = 0; x_ = 0;
loop_index_ = -1; loop_index_ = -1;
write_phase_ = WritePhase::Starting; write_phase_ = WritePhase::Starting;
not_zero_flag_ = 0; not_zero_flag_ = false;
busy_ = true; busy_ = true;
} }