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.h | |
parent | 325a49975a762744638b56b6a7ddd2ccd40fda55 (diff) |
Use ALsizei in a few more places
Diffstat (limited to 'Alc/bformatdec.h')
-rw-r--r-- | Alc/bformatdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/bformatdec.h b/Alc/bformatdec.h index e78d89a7..2fd38ac5 100644 --- a/Alc/bformatdec.h +++ b/Alc/bformatdec.h @@ -44,6 +44,6 @@ typedef struct BandSplitter { void bandsplit_init(BandSplitter *splitter, ALfloat freq_mult); 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); #endif /* BFORMATDEC_H */ |