diff options
author | Chris Robinson <[email protected]> | 2019-06-05 18:54:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-06-05 18:54:17 -0700 |
commit | 410a5ca62129f03ba7cfc091fa63fc451cdfc24f (patch) | |
tree | 6f14211e49659360cae962653eb78a739ec9c9c6 /OpenAL32 | |
parent | 5f26205f8fb504c5f6fec3e2b02f0009a4f24be2 (diff) |
Make RealMixParams channel count unsigned
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 36042782..35ac617a 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -325,7 +325,7 @@ struct RealMixParams { std::array<ALint,MaxChannels> ChannelIndex{}; FloatBufferLine *Buffer{nullptr}; - ALsizei NumChannels{0}; + ALuint NumChannels{0u}; }; using POSTPROCESS = void(*)(ALCdevice *device, const ALsizei SamplesToDo); |