aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-03-17 15:45:39 -0700
committerChris Robinson <[email protected]>2017-03-17 15:45:39 -0700
commit7bf7cda46750a3d44eca83a9b2d5b9c4debfd915 (patch)
treee37b008b8a9395e4ed79224b3a2df2925c387c03 /Alc
parenta209edb5ee5231b9552138712dd57afce00bb556 (diff)
Replace a couple ALuint with ALsizei
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 7c29134d..e34cd75a 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1531,7 +1531,7 @@ void ALCdevice_Unlock(ALCdevice *device)
*/
void SetDefaultWFXChannelOrder(ALCdevice *device)
{
- ALuint i;
+ ALsizei i;
for(i = 0;i < MAX_OUTPUT_CHANNELS;i++)
device->RealOut.ChannelName[i] = InvalidChannel;
@@ -1630,7 +1630,7 @@ void SetDefaultWFXChannelOrder(ALCdevice *device)
*/
void SetDefaultChannelOrder(ALCdevice *device)
{
- ALuint i;
+ ALsizei i;
for(i = 0;i < MAX_OUTPUT_CHANNELS;i++)
device->RealOut.ChannelName[i] = InvalidChannel;