Fixed signed issue with waterfall data.

half-duplex
Elliott Liggett 2023-01-22 15:24:21 -08:00
rodzic deade9a38e
commit 4a0f5a7f59
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -4669,7 +4669,7 @@ void wfmain::receiveSpectrumData(QByteArray spectrum, double startFreq, double e
wfRow = wfimage.at(row); wfRow = wfimage.at(row);
for(int col = 0; col < spectWidth; col++) for(int col = 0; col < spectWidth; col++)
{ {
colorMap->data()->setCell( col, row, wfRow.at(col)); colorMap->data()->setCell( col, row, (unsigned char)wfRow.at(col));
} }
} }
if(updateRange) if(updateRange)