diff options
author | Chris Robinson <[email protected]> | 2019-09-11 06:58:27 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-09-11 06:58:27 -0700 |
commit | a895709b6f67586d4aec3c6f0b276b01899cae86 (patch) | |
tree | 5b6c3508fefba53008e6799d4a79f8157269e55f /alc/converter.cpp | |
parent | be0442c6207cc10fca079a803bbdd8985959b657 (diff) |
Fix function declaration
Diffstat (limited to 'alc/converter.cpp')
-rw-r--r-- | alc/converter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/converter.cpp b/alc/converter.cpp index 58b59179..faf24948 100644 --- a/alc/converter.cpp +++ b/alc/converter.cpp @@ -144,7 +144,7 @@ void Stereo2Mono(ALfloat *RESTRICT dst, const void *src, const size_t frames) no } // namespace SampleConverterPtr CreateSampleConverter(DevFmtType srcType, DevFmtType dstType, size_t numchans, - ALsizei srcRate, ALsizei dstRate, Resampler resampler) + ALuint srcRate, ALuint dstRate, Resampler resampler) { if(numchans < 1 || srcRate < 1 || dstRate < 1) return nullptr; |