aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/reverb.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/effects/reverb.c')
-rw-r--r--Alc/effects/reverb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c
index 537cc082..acf0360a 100644
--- a/Alc/effects/reverb.c
+++ b/Alc/effects/reverb.c
@@ -1444,7 +1444,7 @@ static void CalcModulationDelays(ALreverbState *State,
/* Calculate the sinus rhythm (dependent on modulation time and the
* sampling rate).
*/
- sinus = sinf(index * State->Mod.Scale) + 1.0f;
+ sinus = sinf(index * State->Mod.Scale);
index = (index+1) % State->Mod.Range;
/* Calculate the read offset. */