diff options
Diffstat (limited to 'Alc/bformatdec.c')
-rw-r--r-- | Alc/bformatdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/bformatdec.c b/Alc/bformatdec.c index 5556c2ef..c18376b5 100644 --- a/Alc/bformatdec.c +++ b/Alc/bformatdec.c @@ -32,11 +32,11 @@ void bandsplit_clear(BandSplitter *splitter) } void bandsplit_process(BandSplitter *splitter, ALfloat *restrict hpout, ALfloat *restrict lpout, - const ALfloat *input, ALuint count) + const ALfloat *input, ALsizei count) { ALfloat coeff, d, x; ALfloat z1, z2; - ALuint i; + ALsizei i; coeff = splitter->coeff*0.5f + 0.5f; z1 = splitter->lp_z1; |