When using dummy sound output, don't crash on exit

My bad -- I had meant to move this outside the if
This commit is contained in:
nattthebear 2020-06-06 12:29:36 -04:00
parent b4517d8e0d
commit 4a4c59fcda
1 changed files with 2 additions and 3 deletions

View File

@ -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);
}
/// <summary>