aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alu.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-09-13 03:25:13 -0700
committerChris Robinson <[email protected]>2019-09-13 03:25:13 -0700
commitc1690178ec0b020018857ed0b666ff9b16e01c21 (patch)
treec5c30f740ea57cd4e6f3c96bde68237937781cf3 /alc/alu.h
parent5f862a5b49412ef2690a271ed240d5a6fc881b37 (diff)
Make the resampler increment unsigned
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 10b58612..aca7790e 100644
--- a/alc/alu.h
+++ b/alc/alu.h
@@ -81,7 +81,7 @@ union InterpState {
};
using ResamplerFunc = const ALfloat*(*)(const InterpState *state, const ALfloat *RESTRICT src,
- ALuint frac, ALint increment, const al::span<float> dst);
+ ALuint frac, ALuint increment, const al::span<float> dst);
void BsincPrepare(const ALuint increment, BsincState *state, const BSincTable *table);