diff options
author | Chris Robinson <[email protected]> | 2014-06-02 19:19:22 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-06-02 19:19:22 -0700 |
commit | 3b2fcb3ef6f00d026f06ca154060b29ded3eb3fc (patch) | |
tree | 11f8a60f859cb32986993326b797096e8b8f3364 /OpenAL32/Include/alu.h | |
parent | d2c0a43498bf128462859d1a4bd5913b30179aa7 (diff) |
Avoid a loop when updating the source position variables
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 98663c7d..c4b4d674 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -34,6 +34,8 @@ #define SRC_HISTORY_LENGTH (1<<SRC_HISTORY_BITS) #define SRC_HISTORY_MASK (SRC_HISTORY_LENGTH-1) +#define MAX_PITCH (10) + #ifdef __cplusplus extern "C" { |