From 4fb9dec3812e918d8f000ad39a53bcae70dc8d0a Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 30 Jul 2022 21:02:44 -0400 Subject: [PATCH] Fix use of bool. --- Machines/Amiga/Blitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Amiga/Blitter.cpp b/Machines/Amiga/Blitter.cpp index 52bf19860..e164b9407 100644 --- a/Machines/Amiga/Blitter.cpp +++ b/Machines/Amiga/Blitter.cpp @@ -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; }