From 2383cc39639178b9f31e3cad433fde781540ddbf Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 13 Jul 2014 17:12:26 +0000 Subject: [PATCH] make r7219 consistent across different audio throttle settings --- .../Interfaces/Base Implementations/NullEmulator.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs b/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs index 714c9fed30..1eb1919b80 100644 --- a/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs @@ -121,6 +121,8 @@ namespace BizHawk.Emulation.Common public void GetSamples(short[] samples) { + if (!CoreComm.DispSnowyNullEmulator()) + return; if (xmas) pleg.Generate(samples); }