aboutsummaryrefslogtreecommitdiffstats
path: root/alc/panning.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-09-14 08:50:07 -0700
committerChris Robinson <[email protected]>2019-09-14 08:50:07 -0700
commit3675dfcfef3becf8cfe84b0b213d502a2cf0088a (patch)
treeb947eeec70836c2fb0cb584f333e6b524172fe3f /alc/panning.cpp
parent88364dcbc75ba73d68a3069e09b9cb17d15bd06b (diff)
Use an unsigned index value
Diffstat (limited to 'alc/panning.cpp')
-rw-r--r--alc/panning.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/alc/panning.cpp b/alc/panning.cpp
index 018296d3..7fb1d9ff 100644
--- a/alc/panning.cpp
+++ b/alc/panning.cpp
@@ -969,10 +969,7 @@ void ComputePanGains(const MixParams *mix, const ALfloat *RESTRICT coeffs, ALflo
auto iter = std::transform(ambimap, ambimap+mix->Buffer.size(), std::begin(gains),
[coeffs,ingain](const BFChannelConfig &chanmap) noexcept -> ALfloat
- {
- ASSUME(chanmap.Index >= 0);
- return chanmap.Scale * coeffs[chanmap.Index] * ingain;
- }
+ { return chanmap.Scale * coeffs[chanmap.Index] * ingain; }
);
std::fill(iter, std::end(gains), 0.0f);
}