aboutsummaryrefslogtreecommitdiffstats
path: root/alc/mixvoice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alc/mixvoice.cpp')
-rw-r--r--alc/mixvoice.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/alc/mixvoice.cpp b/alc/mixvoice.cpp
index 09b76fb7..98b86c9a 100644
--- a/alc/mixvoice.cpp
+++ b/alc/mixvoice.cpp
@@ -641,9 +641,8 @@ void ALvoice::mix(State vstate, ALCcontext *Context, const ALuint SamplesToDo)
if((mFlags&VOICE_HAS_HRTF))
{
- const int OutLIdx{GetChannelIdxByName(Device->RealOut, FrontLeft)};
- const int OutRIdx{GetChannelIdxByName(Device->RealOut, FrontRight)};
- ASSUME(OutLIdx >= 0 && OutRIdx >= 0);
+ const ALuint OutLIdx{GetChannelIdxByName(Device->RealOut, FrontLeft)};
+ const ALuint OutRIdx{GetChannelIdxByName(Device->RealOut, FrontRight)};
auto &HrtfSamples = Device->HrtfSourceData;
auto &AccumSamples = Device->HrtfAccumData;