More type fixes

This commit is contained in:
Chris Robinson 2010-04-11 20:17:43 -07:00
parent e0fa497948
commit 3c5007352e

View File

@ -203,15 +203,15 @@ static ALvoid SetSpeakerArrangement(const char *name, ALfloat SpeakerAngle[OUTPU
if(min != i)
{
ALfloat tmpf;
ALint tmpi;
Channel tmpc;
tmpf = SpeakerAngle[i];
SpeakerAngle[i] = SpeakerAngle[min];
SpeakerAngle[min] = tmpf;
tmpi = Speaker2Chan[i];
tmpc = Speaker2Chan[i];
Speaker2Chan[i] = Speaker2Chan[min];
Speaker2Chan[min] = tmpi;
Speaker2Chan[min] = tmpc;
}
}
}