aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Alc/ALu.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index f22b2a22..7c43b0f3 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -128,8 +128,6 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
ALSource->Params.Step = Pitch*FRACTIONONE;
if(ALSource->Params.Step == 0)
ALSource->Params.Step = 1;
- else if(ALSource->Params.Step > maxstep)
- ALSource->Params.Step = maxstep;
}
Channels = aluChannelsFromFormat(ALBuffer->format);
@@ -608,8 +606,6 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
ALSource->Params.Step = Pitch*FRACTIONONE;
if(ALSource->Params.Step == 0)
ALSource->Params.Step = 1;
- else if(ALSource->Params.Step > maxstep)
- ALSource->Params.Step = maxstep;
}
break;
}