From 815d49bd63ea6836a59247481a107d582125cb4f Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 23 May 2020 11:21:53 -0400 Subject: [PATCH] cap nullemulator to <=200fps realistically, about 160-165fps for me --- .../Base Implementations/NullEmulator.cs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs b/src/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs index 7023b37076..630343f490 100644 --- a/src/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs +++ b/src/BizHawk.Emulation.Common/Base Implementations/NullEmulator.cs @@ -1,4 +1,6 @@ -namespace BizHawk.Emulation.Common +using System.Threading; + +namespace BizHawk.Emulation.Common { [Core("NullHawk", "", false, true)] [ServiceNotApplicable(new[] { @@ -28,7 +30,13 @@ public ControllerDefinition ControllerDefinition => NullController.Instance.Definition; - public bool FrameAdvance(IController controller, bool render, bool renderSound) => true; + public bool FrameAdvance(IController controller, bool render, bool renderSound) + { + // real cores wouldn't do something like this, but this just keeps speed reasonable + // if all throttles are off + Thread.Sleep(5); + return true; + } public int Frame => 0;