From fd9da66a85a657376fbc69fb862c5f377fdb8c0a Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 15 May 2020 15:13:09 +1000 Subject: [PATCH] Revert "Force DummySoundOutput on Mono for now" This reverts commit aaa75a19aa38844a3f4fa05c5183a5feef5dd819. --- src/BizHawk.Client.Common/config/Config.cs | 2 +- src/BizHawk.Client.EmuHawk/Sound/Sound.cs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Client.Common/config/Config.cs b/src/BizHawk.Client.Common/config/Config.cs index 5c9a199019..c9c4111afd 100644 --- a/src/BizHawk.Client.Common/config/Config.cs +++ b/src/BizHawk.Client.Common/config/Config.cs @@ -230,7 +230,7 @@ namespace BizHawk.Client.Common public int DispCropBottom { get; set; } = 0; // 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 SoundEnabledNormal { get; set; } = true; public bool SoundEnabledRWFF { get; set; } = true; diff --git a/src/BizHawk.Client.EmuHawk/Sound/Sound.cs b/src/BizHawk.Client.EmuHawk/Sound/Sound.cs index fb3e159981..cb92869efb 100644 --- a/src/BizHawk.Client.EmuHawk/Sound/Sound.cs +++ b/src/BizHawk.Client.EmuHawk/Sound/Sound.cs @@ -25,8 +25,7 @@ namespace BizHawk.Client.EmuHawk if (OSTailoredCode.IsUnixHost) { // at the moment unix/mono can only support OpenAL (so ignore whatever is set in the config) -// _outputDevice = new OpenALSoundOutput(this); - // scratch that it's trying to load openal.dll for some reason + _outputDevice = new OpenALSoundOutput(this); } else {