From afd55fdc6ba0b1e734d585ecf0fd4e364a0b5265 Mon Sep 17 00:00:00 2001 From: "J.D. Purcell" Date: Wed, 14 Dec 2016 18:26:19 -0500 Subject: [PATCH] Revert "Default to Sync sound instead of Async" This reverts commit 6702f7795c9b944650d062d2c2764f9cc86be433. --- BizHawk.Client.EmuHawk/MainForm.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index ef06af347f..76731a31d4 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1625,7 +1625,8 @@ namespace BizHawk.Client.EmuHawk } else { - GlobalWin.Sound.SetSyncInputPin(_currentSoundProvider); + _currentSoundProvider.SetSyncMode(SyncSoundMode.Async); + GlobalWin.Sound.SetAsyncInputPin(_currentSoundProvider); } }