Skip to content

Commit

Permalink
- default replay gain to 'off'.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Mar 11, 2021
1 parent b9dafaa commit d102304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/audio/music/music.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit d102304

Please sign in to comment.