From 5a2a33224ca54ca0334d5184d4e1e928fea954eb Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Wed, 25 Dec 2024 12:42:33 +0200 Subject: [PATCH] Only enable audio by default on libretro for now --- include/config.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/config.hpp b/include/config.hpp index 749ba3af..d45aa05c 100644 --- a/include/config.hpp +++ b/include/config.hpp @@ -48,7 +48,12 @@ struct EmulatorConfig { static constexpr bool ubershaderDefault = true; #endif static constexpr bool accelerateShadersDefault = true; + +#if defined(__LIBRETRO__) static constexpr bool audioEnabledDefault = true; +#else + static constexpr bool audioEnabledDefault = false; +#endif bool shaderJitEnabled = shaderJitDefault; bool useUbershaders = ubershaderDefault;