From d1023046ba0203ced97def1c534473daa37baab0 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 11 Mar 2021 15:47:05 +0100 Subject: [PATCH] - default replay gain to 'off'. --- src/common/audio/music/music.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/audio/music/music.cpp b/src/common/audio/music/music.cpp index 86a276228..1437ea83f 100644 --- a/src/common/audio/music/music.cpp +++ b/src/common/audio/music/music.cpp @@ -84,7 +84,7 @@ static MusicCallbacks mus_cb = { nullptr, DefaultOpenMusic }; EXTERN_CVAR(Int, snd_mididevice) CVAR(Bool, mus_calcgain, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG) // changing this will only take effect for the next song. -CVAR(Bool, mus_usereplaygain, true, CVAR_ARCHIVE | CVAR_GLOBALCONFIG) // changing this will only take effect for the next song. +CVAR(Bool, mus_usereplaygain, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG) // changing this will only take effect for the next song. CUSTOM_CVAR(Float, mus_gainoffset, 0.f, CVAR_ARCHIVE | CVAR_GLOBALCONFIG) // for customizing the base volume { if (self > 10.f) self = 10.f;