Revert "Force DummySoundOutput on Mono for now"
This reverts commit aaa75a19aa
.
This commit is contained in:
parent
00aebc110c
commit
fd9da66a85
|
@ -230,7 +230,7 @@ namespace BizHawk.Client.Common
|
||||||
public int DispCropBottom { get; set; } = 0;
|
public int DispCropBottom { get; set; } = 0;
|
||||||
|
|
||||||
// Sound options
|
// Sound options
|
||||||
public ESoundOutputMethod SoundOutputMethod { get; set; } = DetectDirectX() ? ESoundOutputMethod.DirectSound : ESoundOutputMethod.Dummy; // with OpenAL, Mono is trying to load openal.dll for some reason
|
public ESoundOutputMethod SoundOutputMethod { get; set; } = DetectDirectX() ? ESoundOutputMethod.DirectSound : ESoundOutputMethod.OpenAL;
|
||||||
public bool SoundEnabled { get; set; } = true;
|
public bool SoundEnabled { get; set; } = true;
|
||||||
public bool SoundEnabledNormal { get; set; } = true;
|
public bool SoundEnabledNormal { get; set; } = true;
|
||||||
public bool SoundEnabledRWFF { get; set; } = true;
|
public bool SoundEnabledRWFF { get; set; } = true;
|
||||||
|
|
|
@ -25,8 +25,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (OSTailoredCode.IsUnixHost)
|
if (OSTailoredCode.IsUnixHost)
|
||||||
{
|
{
|
||||||
// at the moment unix/mono can only support OpenAL (so ignore whatever is set in the config)
|
// at the moment unix/mono can only support OpenAL (so ignore whatever is set in the config)
|
||||||
// _outputDevice = new OpenALSoundOutput(this);
|
_outputDevice = new OpenALSoundOutput(this);
|
||||||
// scratch that it's trying to load openal.dll for some reason
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue