diff options
author | Chris Robinson <[email protected]> | 2019-06-05 19:26:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-06-05 19:26:54 -0700 |
commit | 1ce310c6d1719c6f71664385e136b5510602ac21 (patch) | |
tree | ce414b44426487a02953d88b7f4804d8c5ed376a /OpenAL32 | |
parent | 410a5ca62129f03ba7cfc091fa63fc451cdfc24f (diff) |
Make some more channel counts 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 35ac617a..0534751f 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -318,7 +318,7 @@ struct MixParams { std::array<BFChannelConfig,MAX_OUTPUT_CHANNELS> AmbiMap; FloatBufferLine *Buffer{nullptr}; - ALsizei NumChannels{0}; + ALuint NumChannels{0u}; }; struct RealMixParams { |