diff options
author | Chris Robinson <[email protected]> | 2017-01-16 08:59:08 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-01-16 08:59:08 -0800 |
commit | 959812ee13e4869309e3c2cf507f6b0458ad8618 (patch) | |
tree | bbced4cf0170a033239301c0ed1ac60fa8f64979 /Alc/bformatdec.c | |
parent | 325a49975a762744638b56b6a7ddd2ccd40fda55 (diff) |
Use ALsizei in a few more places
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; |