diff options
author | Chris Robinson <[email protected]> | 2019-10-22 15:23:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-10-22 15:23:17 -0700 |
commit | 4733fc6f1e2ba1bcdaca9d7c1941b2abbf150b67 (patch) | |
tree | c6fa4ec6e601d180b21648ef251a039652755249 /alc | |
parent | a8a3acb6f66da6b630e6d71b77cdbc2b23a4f552 (diff) |
Fix azimuth limit
Diffstat (limited to 'alc')
-rw-r--r-- | alc/hrtf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/hrtf.cpp b/alc/hrtf.cpp index 7643ce44..bfce69f5 100644 --- a/alc/hrtf.cpp +++ b/alc/hrtf.cpp @@ -91,7 +91,7 @@ using HrtfHandlePtr = std::unique_ptr<HrtfHandle>; #define MAX_EV_COUNT (181) #define MIN_AZ_COUNT (1) -#define MAX_AZ_COUNT (360) +#define MAX_AZ_COUNT (255) #define MAX_HRIR_DELAY (HRTF_HISTORY_LENGTH-1) |