From 7847a5ee42f2d398509e97ab7c56154b745a0bf4 Mon Sep 17 00:00:00 2001 From: Ed Date: Fri, 26 Jan 2024 14:56:53 +0000 Subject: [PATCH] Reapply volume control fix from 341 --- lib_xua/api/xua_conf_default.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib_xua/api/xua_conf_default.h b/lib_xua/api/xua_conf_default.h index 872064c2..4fb5c2a3 100644 --- a/lib_xua/api/xua_conf_default.h +++ b/lib_xua/api/xua_conf_default.h @@ -1185,7 +1185,11 @@ /* Handle out volume control in the mixer - enabled by default */ #ifndef OUT_VOLUME_IN_MIXER -#define OUT_VOLUME_IN_MIXER (1) +#if MIXER + #define OUT_VOLUME_IN_MIXER (1) +#else + #define OUT_VOLUME_IN_MIXER (0) +#endif #endif /* Apply out volume controls after the mix. Only relevant when OUT_VOLUME_IN_MIXER enabled. Enabled by default */