From 3b8e0ce39df9f559cb8eeed9a94362cad25dadda Mon Sep 17 00:00:00 2001 From: nattthebear Date: Wed, 17 Jun 2020 12:40:56 -0400 Subject: [PATCH] Zwinder: Don't tell the mainform we're rewind-state-capping every 0 frames, that's just silly --- src/BizHawk.Client.Common/rewind/Zwinder.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/rewind/Zwinder.cs b/src/BizHawk.Client.Common/rewind/Zwinder.cs index a906e0bba5..7268fcf261 100644 --- a/src/BizHawk.Client.Common/rewind/Zwinder.cs +++ b/src/BizHawk.Client.Common/rewind/Zwinder.cs @@ -105,7 +105,8 @@ namespace BizHawk.Client.Common var sizeRatio = Size / (float)_states[HeadStateIndex].Size; var frameRatio = _targetFrameLength / sizeRatio; - return (int)Math.Round(frameRatio); + var idealInterval = (int)Math.Round(frameRatio); + return Math.Max(idealInterval, 1); } private bool ShouldCapture(int frame)