diff --git a/src/BizHawk.Client.EmuHawk/Sound/Sound.cs b/src/BizHawk.Client.EmuHawk/Sound/Sound.cs index eea6b868f8..1f8b0b6f80 100644 --- a/src/BizHawk.Client.EmuHawk/Sound/Sound.cs +++ b/src/BizHawk.Client.EmuHawk/Sound/Sound.cs @@ -38,10 +38,9 @@ namespace BizHawk.Client.EmuHawk if (Global.Config.SoundOutputMethod == ESoundOutputMethod.XAudio2) _outputDevice = new XAudio2SoundOutput(this); } - - if (_outputDevice == null) - _outputDevice = new DummySoundOutput(this); } + if (_outputDevice == null) + _outputDevice = new DummySoundOutput(this); } ///