From d2965c2185358e54578a7fef96b1c2005711a60b Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 8 Sep 2022 08:36:47 +1000 Subject: [PATCH] If dummy sound chosen in config, try DirectSound (maybe fixes #3379) - if DirectSound fails (i.e. dummy is in config for a reason), then skip the error dialog as the user has probably seen it already, and set it back to dummy - if DirectSound succeeds, leave it, it will be written to config (there's a mute setting for people who really don't want sound) - copied the init config code so s/DirectSound/OpenAL/ on Linux - could probably try OpenAL on Windows when DirectSound fails but whatever --- src/BizHawk.Client.EmuHawk/MainForm.cs | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 01fe35b1d8..ebd831a4b0 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -497,20 +497,24 @@ namespace BizHawk.Client.EmuHawk InputManager.ResetMainControllers(_autofireNullControls); InputManager.AutofireStickyXorAdapter.SetOnOffPatternFromConfig(Config.AutofireOn, Config.AutofireOff); + var savedOutputMethod = Config.SoundOutputMethod; + if (savedOutputMethod is ESoundOutputMethod.Dummy) Config.SoundOutputMethod = HostCapabilityDetector.HasDirectX ? ESoundOutputMethod.DirectSound : ESoundOutputMethod.OpenAL; try { Sound = new Sound(Handle, Config, () => Emulator.VsyncRate()); } catch { - string message = "Couldn't initialize sound device! Try changing the output method in Sound config."; - if (Config.SoundOutputMethod == ESoundOutputMethod.DirectSound) + if (savedOutputMethod is not ESoundOutputMethod.Dummy) { - message = "Couldn't initialize DirectSound! Things may go poorly for you. Try changing your sound driver to 44.1khz instead of 48khz in mmsys.cpl."; + ShowMessageBox( + owner: null, + text: savedOutputMethod is ESoundOutputMethod.DirectSound + ? "Couldn't initialize DirectSound! Things may go poorly for you. Try changing your sound driver to 44.1khz instead of 48khz in mmsys.cpl." + : "Couldn't initialize sound device! Try changing the output method in Sound config.", + caption: "Initialization Error", + EMsgBoxIcon.Error); } - - ShowMessageBox(owner: null, message, "Initialization Error", EMsgBoxIcon.Error); - Config.SoundOutputMethod = ESoundOutputMethod.Dummy; Sound = new Sound(Handle, Config, () => Emulator.VsyncRate()); }