From ab35016aae447ec3b0458efbd3cb2ef78de5b881 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 8 Jun 2022 15:12:32 -0400 Subject: [PATCH] Clear any time debt upon phoney reset. --- Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index 249d15fd1..fd337f724 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -2793,6 +2793,7 @@ void Processor void Processor::reset() { state_ = Reset; + time_remaining_ = HalfCycles(0); } }