From eb811b7d799dd4a1b24ea4489c847a76a4063610 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Fri, 12 Jun 2020 14:31:00 -0400 Subject: [PATCH] Remove check that stops a nymacore from creating "thread" in deterministic mode The MT ppu renderer in saturn looks cool to me, so it probably won't cause nondeterminism, probably Fixes #2126 --- src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs index 5d117e89d9..9176a6b5c1 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs @@ -157,8 +157,9 @@ namespace BizHawk.Emulation.Cores.Waterbox _frameThreadPtr = _nyma.GetFrameThreadProc(); if (_frameThreadPtr != IntPtr.Zero) { - if (deterministic) - throw new InvalidOperationException("Internal error: Core set a frame thread proc in deterministic mode"); + // This will probably be fine, right? TODO: Revisit + // if (deterministic) + // throw new InvalidOperationException("Internal error: Core set a frame thread proc in deterministic mode"); Console.WriteLine($"Setting up waterbox thread for {_frameThreadPtr}"); _frameThreadStart = CallingConventionAdapters.Waterbox.GetDelegateForFunctionPointer(_frameThreadPtr); }