From bf9743cb3806380f6153d982788cc794a0518be0 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 24 Dec 2023 14:16:12 -0500 Subject: [PATCH] Keep as regular int. --- Machines/PCCompatible/PCCompatible.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/PCCompatible/PCCompatible.cpp b/Machines/PCCompatible/PCCompatible.cpp index 21acfd8fc..c0ce68025 100644 --- a/Machines/PCCompatible/PCCompatible.cpp +++ b/Machines/PCCompatible/PCCompatible.cpp @@ -920,7 +920,7 @@ class ConcreteMachine: // MARK: - TimedMachine. void run_for(const Cycles duration) override { - const auto pit_ticks = duration.as_integral(); + const auto pit_ticks = duration.as(); int ticks; if constexpr (!turbo) {