diff options
author | Chris Robinson <[email protected]> | 2020-12-12 20:21:56 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-12 23:41:38 -0800 |
commit | 225d42538d2397e2698b9edb359c360dde3d00a8 (patch) | |
tree | 33baffc701058760ff3fc3a068cb0e164ab58ccc /core/mixer/mixer_c.cpp | |
parent | bb597546e1db888120b0da5c23dbf249a281e6aa (diff) |
Be more consistent with size_t
Diffstat (limited to 'core/mixer/mixer_c.cpp')
-rw-r--r-- | core/mixer/mixer_c.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/mixer/mixer_c.cpp b/core/mixer/mixer_c.cpp index 24ccd175..6b25b6cc 100644 --- a/core/mixer/mixer_c.cpp +++ b/core/mixer/mixer_c.cpp @@ -83,8 +83,8 @@ const float *DoResample(const InterpState *state, const float *RESTRICT src, uin return dst.data(); } -inline void ApplyCoeffs(float2 *RESTRICT Values, const uint_fast32_t IrSize, - const HrirArray &Coeffs, const float left, const float right) +inline void ApplyCoeffs(float2 *RESTRICT Values, const size_t IrSize, const HrirArray &Coeffs, + const float left, const float right) { ASSUME(IrSize >= MIN_IR_LENGTH); for(size_t c{0};c < IrSize;++c) |