We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d46da8 commit 1f7f6d2Copy full SHA for 1f7f6d2
src/aumiks/speakers.cpp
@@ -60,7 +60,7 @@ void speakers::fill(utki::span<std::int16_t> play_buf)noexcept{
60
auto dst = play_buf.begin();
61
for(; src != this->smp_buf.cend(); ++src){
62
for(unsigned i = 0; i != src->channel.size(); ++i, ++dst){
63
- ASSERT(play_buf.overlaps(dst))
+ ASSERT(utki::overlaps(play_buf, dst))
64
using std::min;
65
using std::max;
66
*dst = int16_t(max(-0x7fff, min(int32_t(src->channel[i]), 0x7fff)));
0 commit comments