From d4be4c476977a096d653641503b61901a40723f2 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 6 Apr 2016 20:27:48 -0400 Subject: [PATCH] Of course, I want `min`. Not `max`. --- OSBindings/Mac/Clock Signal/Documents/MachineDocument.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OSBindings/Mac/Clock Signal/Documents/MachineDocument.swift b/OSBindings/Mac/Clock Signal/Documents/MachineDocument.swift index cc72a643f..a499de76f 100644 --- a/OSBindings/Mac/Clock Signal/Documents/MachineDocument.swift +++ b/OSBindings/Mac/Clock Signal/Documents/MachineDocument.swift @@ -44,7 +44,7 @@ class MachineDocument: NSDocument, CSOpenGLViewDelegate, CSOpenGLViewResponderDe // if the emulation has fallen too far behind then silently limit the request; // some actions — e.g. the host computer waking after sleep — may give us a // prohibitive backlog - runForNumberOfCycles(max(Int32(elapsedTime), Int32(intendedCyclesPerSecond / 25))) + runForNumberOfCycles(min(Int32(elapsedTime), Int32(intendedCyclesPerSecond / 25))) } lastCycleCount = cycleCount }