mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Only enable audio by default on libretro for now
This commit is contained in:
parent
7c5f7954e5
commit
5a2a33224c
1 changed files with 5 additions and 0 deletions
|
@ -48,7 +48,12 @@ struct EmulatorConfig {
|
||||||
static constexpr bool ubershaderDefault = true;
|
static constexpr bool ubershaderDefault = true;
|
||||||
#endif
|
#endif
|
||||||
static constexpr bool accelerateShadersDefault = true;
|
static constexpr bool accelerateShadersDefault = true;
|
||||||
|
|
||||||
|
#if defined(__LIBRETRO__)
|
||||||
static constexpr bool audioEnabledDefault = true;
|
static constexpr bool audioEnabledDefault = true;
|
||||||
|
#else
|
||||||
|
static constexpr bool audioEnabledDefault = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
bool shaderJitEnabled = shaderJitDefault;
|
bool shaderJitEnabled = shaderJitDefault;
|
||||||
bool useUbershaders = ubershaderDefault;
|
bool useUbershaders = ubershaderDefault;
|
||||||
|
|
Loading…
Add table
Reference in a new issue