aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALu.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 608c28c1..29984948 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -820,7 +820,7 @@ another_source:
ALuint DataPosFrac = 0;
ALuint Buffer;
ALbuffer *ALBuffer;
- ALuint Channels, Frequency;
+ ALuint Channels;
ALuint BufferSize;
ALfloat Pitch;
@@ -833,7 +833,6 @@ another_source:
Channels = aluChannelsFromFormat(ALBuffer->format);
DataSize = ALBuffer->size;
DataSize /= Channels * aluBytesFromFormat(ALBuffer->format);
- Frequency = ALBuffer->frequency;
DataPosInt = ALSource->position;
DataPosFrac = ALSource->position_fraction;
@@ -853,7 +852,7 @@ another_source:
CalcSourceParams(ALContext, ALSource, (Channels==1)?AL_TRUE:AL_FALSE,
DrySend, WetSend, &Pitch, &DryGainHF, WetGainHF);
- Pitch = (Pitch*Frequency) / frequency;
+ Pitch = (Pitch*ALBuffer->frequency) / frequency;
if(Channels == 1)
{