From d1eca5dc214bbb7b7f6f09808dc91fd5df996d49 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 30 Dec 2024 21:29:36 -0500 Subject: [PATCH] Expand mask. --- Machines/Commodore/Plus4/Video.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Commodore/Plus4/Video.hpp b/Machines/Commodore/Plus4/Video.hpp index 40ff1c558..eb5209d58 100644 --- a/Machines/Commodore/Plus4/Video.hpp +++ b/Machines/Commodore/Plus4/Video.hpp @@ -714,7 +714,7 @@ private: CounterReset = 0x10, UpdateDMAState = 0x20, - Mask = CounterReset | IncrementVerticalLine | IncrementVerticalSub | Flash | Latch, + Mask = CounterReset | IncrementVerticalLine | IncrementVerticalSub | Flash | Latch | UpdateDMAState, }; static constexpr int DelayEventSize = 6; uint64_t delayed_events_ = 0;