aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index e5203d6e..182b226f 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -357,7 +357,7 @@ void BsincPrepare(const ALuint increment, BsincState *state, const BSincTable *t
state->sf = sf;
state->m = table->m[si];
- state->l = -((state->m/2) - 1);
+ state->l = (state->m/2) - 1;
state->filter = table->Tab + table->filterOffset[si];
}