aboutsummaryrefslogtreecommitdiffstats
path: root/src/replay_gain.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/replay_gain.c')
-rw-r--r--src/replay_gain.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/replay_gain.c b/src/replay_gain.c
index d21b94e0a..4ddb7abb8 100644
--- a/src/replay_gain.c
+++ b/src/replay_gain.c
@@ -44,10 +44,9 @@ void replay_gain_global_init(void)
{
const struct config_param *param = config_get_param(CONF_REPLAYGAIN);
- if (!param)
- return;
-
- if (strcmp(param->value, "track") == 0) {
+ if (param == NULL) {
+ replay_gain_mode = REPLAY_GAIN_OFF;
+ } else if (strcmp(param->value, "track") == 0) {
replay_gain_mode = REPLAY_GAIN_TRACK;
} else if (strcmp(param->value, "album") == 0) {
replay_gain_mode = REPLAY_GAIN_ALBUM;