diff options
author | Chris Robinson <[email protected]> | 2017-03-17 15:45:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-03-17 15:45:39 -0700 |
commit | 7bf7cda46750a3d44eca83a9b2d5b9c4debfd915 (patch) | |
tree | e37b008b8a9395e4ed79224b3a2df2925c387c03 /Alc | |
parent | a209edb5ee5231b9552138712dd57afce00bb556 (diff) |
Replace a couple ALuint with ALsizei
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |