1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

ScopeVis: fixed multiple stream input. Fixes #872

This commit is contained in:
f4exb 2021-07-13 17:28:21 +02:00
parent f66eaa5b8f
commit 989de2ab65

View File

@ -867,7 +867,7 @@ private:
void writeCurrent(const std::vector<ComplexVector::const_iterator>& vbegin, int length)
{
for (unsigned int i = 0; i < vbegin.size(); i++) {
current().write(vbegin[i], length);
current(i).write(vbegin[i], length);
}
}