aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-10-07 08:19:09 -0700
committerChris Robinson <[email protected]>2012-10-07 08:19:09 -0700
commit2a6dd2f243a4b1ec72a704158c2465b5551b2034 (patch)
tree11c02485daa9deaecaa0edff5f2aac08e78564d1
parentf3349221c61f1c65746bd48da8fc6f331e57d1a1 (diff)
Fix a type mismatch
-rw-r--r--Alc/hrtf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/hrtf.c b/Alc/hrtf.c
index fd2f9f62..11922cc7 100644
--- a/Alc/hrtf.c
+++ b/Alc/hrtf.c
@@ -356,7 +356,8 @@ static struct Hrtf *LoadHrtf00(FILE *f, ALuint deviceRate)
struct Hrtf *Hrtf = NULL;
ALboolean failed = AL_FALSE;
ALuint rate = 0, irCount = 0;
- ALushort irSize = 0, evCount = 0;
+ ALushort irSize = 0;
+ ALubyte evCount = 0;
ALubyte *azCount = NULL;
ALushort *evOffset = NULL;
ALshort *coeffs = NULL;