From 4a4c59fcdaeaf3867060c3f7948b51cc92d1db1a Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 6 Jun 2020 12:29:36 -0400 Subject: [PATCH] When using dummy sound output, don't crash on exit My bad -- I had meant to move this outside the if --- src/BizHawk.Client.EmuHawk/Sound/Sound.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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); } ///