Skip to content

Commit

Permalink
ScopeVis: fixed multiple stream input. Fixes #872
Browse files Browse the repository at this point in the history
  • Loading branch information
f4exb committed Jul 13, 2021
1 parent f66eaa5 commit 989de2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdrbase/dsp/scopevis.h
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ class SDRBASE_API ScopeVis : public QObject {
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);
}
}

Expand Down

0 comments on commit 989de2a

Please sign in to comment.