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:
parent
b4517d8e0d
commit
4a4c59fcda
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue