Only enable audio by default on libretro for now

This commit is contained in:
wheremyfoodat 2024-12-25 12:42:33 +02:00
parent 7c5f7954e5
commit 5a2a33224c

View file

@ -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;