aboutsummaryrefslogtreecommitdiffstats
path: root/src/replayGain.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/replayGain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/replayGain.c b/src/replayGain.c
index 138d3a68b..ea521d728 100644
--- a/src/replayGain.c
+++ b/src/replayGain.c
@@ -89,10 +89,10 @@ ReplayGainInfo * newReplayGainInfo() {
ReplayGainInfo * ret = malloc(sizeof(ReplayGainInfo));
ret->albumGain = 0.0;
- ret->albumPeak = 1.0;
+ ret->albumPeak = 0.0;
ret->trackGain = 0.0;
- ret->trackPeak = 1.0;
+ ret->trackPeak = 0.0;
/* set to -1 so that we know in doReplayGain to compute the scale */
ret->scale = -1.0;