From a98316ba972cbd46847e2a2ef8ef39b8a46c32da Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 11 Dec 2016 18:35:42 -0500 Subject: [PATCH] Soudn refactoring: Unbreak clock & vsync thrtottle --- BizHawk.Client.EmuHawk/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 58226b53ff..ab98f43e72 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1625,7 +1625,7 @@ namespace BizHawk.Client.EmuHawk // note that the avi dumper has already rewired the emulator itself in this case. GlobalWin.Sound.SetAsyncInputPin(_dumpProxy); } - else if (Global.Config.SoundThrottle) + else if (Global.Config.SoundThrottle || !_currentSoundProvider.CanProvideAsync) { _currentSoundProvider.SetSyncMode(SyncSoundMode.Sync); GlobalWin.Sound.SetSyncInputPin(_currentSoundProvider);