1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-07 23:25:00 +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;
loop_index_ = -1;
write_phase_ = WritePhase::Starting;
not_zero_flag_ = 0;
not_zero_flag_ = false;
busy_ = true;
}