Fix step calculations
This commit is contained in:
parent
ca1ec4b221
commit
4d4d699780
@ -128,8 +128,6 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
|
|||||||
ALSource->Params.Step = Pitch*FRACTIONONE;
|
ALSource->Params.Step = Pitch*FRACTIONONE;
|
||||||
if(ALSource->Params.Step == 0)
|
if(ALSource->Params.Step == 0)
|
||||||
ALSource->Params.Step = 1;
|
ALSource->Params.Step = 1;
|
||||||
else if(ALSource->Params.Step > maxstep)
|
|
||||||
ALSource->Params.Step = maxstep;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Channels = aluChannelsFromFormat(ALBuffer->format);
|
Channels = aluChannelsFromFormat(ALBuffer->format);
|
||||||
@ -608,8 +606,6 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
|
|||||||
ALSource->Params.Step = Pitch*FRACTIONONE;
|
ALSource->Params.Step = Pitch*FRACTIONONE;
|
||||||
if(ALSource->Params.Step == 0)
|
if(ALSource->Params.Step == 0)
|
||||||
ALSource->Params.Step = 1;
|
ALSource->Params.Step = 1;
|
||||||
else if(ALSource->Params.Step > maxstep)
|
|
||||||
ALSource->Params.Step = maxstep;
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user