aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-04-11 20:17:43 -0700
committerChris Robinson <[email protected]>2010-04-11 20:17:43 -0700
commit3c5007352e94f62345796e5f36e80e563769b20a (patch)
treee2366d2b82c75975fe2d00f01a1716876e97cbea
parente0fa4979487f6adc566a4e1b18e2caeeee8843ee (diff)
More type fixes
-rw-r--r--Alc/ALu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 76c49d76..b4b1b68e 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -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;
}
}
}