aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects/reverb.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-08-20 05:26:51 -0700
committerChris Robinson <[email protected]>2019-08-20 05:26:51 -0700
commit7a8f81259c515291126f29a0e65aff791efe16b0 (patch)
tree124b56dc301dec0116dd6394d0f46389123da7b2 /alc/effects/reverb.cpp
parent102ef6cb3356ef81e2a392d3aa8bd6324eb3ff30 (diff)
Use size_t for the NFC and biquad filters' sample count
Diffstat (limited to 'alc/effects/reverb.cpp')
-rw-r--r--alc/effects/reverb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/effects/reverb.cpp b/alc/effects/reverb.cpp
index 1e5cb861..7f6da778 100644
--- a/alc/effects/reverb.cpp
+++ b/alc/effects/reverb.cpp
@@ -293,7 +293,7 @@ struct T60Filter {
const ALfloat hfDecayTime, const ALfloat lf0norm, const ALfloat hf0norm);
/* Applies the two T60 damping filter sections. */
- void process(ALfloat *samples, const ALsizei todo)
+ void process(ALfloat *samples, const size_t todo)
{
HFFilter.process(samples, samples, todo);
LFFilter.process(samples, samples, todo);