aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alu.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-06-29 11:32:15 -0700
committerChris Robinson <[email protected]>2020-06-29 11:32:15 -0700
commit88ad84edf674e31b22c1a6410aad47884154b310 (patch)
treed283381b571ede49cdeb979fabfe40c6bfcdc13c /alc/alu.h
parentf81558c948e8dbc044176443c2455f6e2f3b5e08 (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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alu.h b/alc/alu.h
index 6099559d..a36c59cc 100644
--- a/alc/alu.h
+++ b/alc/alu.h
@@ -15,7 +15,7 @@ struct ALbufferlistitem;
struct ALeffectslot;
-#define MAX_PITCH 255
+#define MAX_PITCH 10
#define MAX_SENDS 6