From 8d217567c6494c42bf849ea27f66e14e20788857 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 17 Oct 2009 21:38:45 +0200 Subject: replay_gain: added setting "replaygain off" There was no setting for disabling replay gain. It was off when the "replaygain" setting was not there. --- src/replay_gain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/replay_gain.c') diff --git a/src/replay_gain.c b/src/replay_gain.c index 4ddb7abb8..e1c7db9fe 100644 --- a/src/replay_gain.c +++ b/src/replay_gain.c @@ -44,7 +44,7 @@ void replay_gain_global_init(void) { const struct config_param *param = config_get_param(CONF_REPLAYGAIN); - if (param == NULL) { + if (param == NULL || strcmp(param->value, "off") == 0) { replay_gain_mode = REPLAY_GAIN_OFF; } else if (strcmp(param->value, "track") == 0) { replay_gain_mode = REPLAY_GAIN_TRACK; -- cgit v1.2.3