diff options
author | Chris Robinson <[email protected]> | 2012-03-17 03:42:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-03-17 03:42:07 -0700 |
commit | 703d72f20e6e941a2438de188ebda0b08850c112 (patch) | |
tree | a8c4e73d785d1fb514b8036c7f77e6cf92c00f81 /Alc/hrtf.c | |
parent | b7d67d8bcc71ad23aee3a52ff7a63dbd1c20d828 (diff) |
Use the correct loop count for reading the elevation offsets from external HRTF files
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r-- | Alc/hrtf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -384,7 +384,7 @@ void InitHrtf(void) if(!failed) { - for(i = 0;i < HRIR_COUNT;i++) + for(i = 0;i < ELEV_COUNT;i++) { ALushort offset; offset = fgetc(f); |