1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-25 01:18:38 -05:00

Removed FPS limitation in WSSpectrum. Fixes #767

This commit is contained in:
f4exb 2021-02-07 10:59:19 +01:00
parent 6d7eb44641
commit dfb149d267

View File

@ -163,10 +163,6 @@ void WSSpectrum::newSpectrum(
bool usb
)
{
if (m_timer.elapsed() < 200) { // Max 5 frames per second
return;
}
qint64 elapsed = m_timer.restart();
uint64_t nowMs = TimeUtil::nowms();
QByteArray payload;