diff options
author | Chris Robinson <[email protected]> | 2020-06-29 11:32:15 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-06-29 11:32:15 -0700 |
commit | 88ad84edf674e31b22c1a6410aad47884154b310 (patch) | |
tree | d283381b571ede49cdeb979fabfe40c6bfcdc13c /alc/alu.h | |
parent | f81558c948e8dbc044176443c2455f6e2f3b5e08 (diff) |
Reduce the MAX_PITCH to 10
255 is insanely overkill. The bsinc resamplers fade to silence after a few
octaves, and the others would be a mess.
Diffstat (limited to 'alc/alu.h')
-rw-r--r-- | alc/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ struct ALbufferlistitem; struct ALeffectslot; -#define MAX_PITCH 255 +#define MAX_PITCH 10 #define MAX_SENDS 6 |