From b4517d8e0d37ca8956470a46b3ff0f85a7cd34ee Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 6 Jun 2020 12:21:31 -0400 Subject: [PATCH] Actually respect the no sound output config variable --- src/BizHawk.Client.EmuHawk/Sound/Sound.cs | 31 +++++++++++++---------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/Sound/Sound.cs b/src/BizHawk.Client.EmuHawk/Sound/Sound.cs index 6ebeb018ea..eea6b868f8 100644 --- a/src/BizHawk.Client.EmuHawk/Sound/Sound.cs +++ b/src/BizHawk.Client.EmuHawk/Sound/Sound.cs @@ -22,23 +22,26 @@ namespace BizHawk.Client.EmuHawk public Sound(IntPtr mainWindowHandle) { - if (OSTailoredCode.IsUnixHost) + if (Global.Config.SoundOutputMethod != ESoundOutputMethod.Dummy) { - // at the moment unix/mono can only support OpenAL (so ignore whatever is set in the config) - _outputDevice = new OpenALSoundOutput(this); - } - else - { - if (Global.Config.SoundOutputMethod == ESoundOutputMethod.OpenAL) + if (OSTailoredCode.IsUnixHost) + { + // at the moment unix/mono can only support OpenAL (so ignore whatever is set in the config) _outputDevice = new OpenALSoundOutput(this); - if (Global.Config.SoundOutputMethod == ESoundOutputMethod.DirectSound) - _outputDevice = new DirectSoundSoundOutput(this, mainWindowHandle, Global.Config.SoundDevice); - if (Global.Config.SoundOutputMethod == ESoundOutputMethod.XAudio2) - _outputDevice = new XAudio2SoundOutput(this); - } + } + else + { + if (Global.Config.SoundOutputMethod == ESoundOutputMethod.OpenAL) + _outputDevice = new OpenALSoundOutput(this); + if (Global.Config.SoundOutputMethod == ESoundOutputMethod.DirectSound) + _outputDevice = new DirectSoundSoundOutput(this, mainWindowHandle, Global.Config.SoundDevice); + if (Global.Config.SoundOutputMethod == ESoundOutputMethod.XAudio2) + _outputDevice = new XAudio2SoundOutput(this); + } - if (_outputDevice == null) - _outputDevice = new DummySoundOutput(this); + if (_outputDevice == null) + _outputDevice = new DummySoundOutput(this); + } } ///