Updated comments

This commit is contained in:
Jordan Sherer 2018-10-15 02:29:40 -04:00
parent 4a38778808
commit 2f1dca3c49

View File

@ -4460,12 +4460,12 @@ void MainWindow::guiUpdate()
tryBandHop(); tryBandHop();
} }
// once at the end of the period // at the end of the period
bool forceDirty = false; bool forceDirty = false;
if(m_sec0 % (m_TRperiod-2) == 0 || if(m_sec0 % (m_TRperiod-2) == 0 ||
m_sec0 % (m_TRperiod-1) == 0 || m_sec0 % (m_TRperiod-1) == 0 ||
m_sec0 % (m_TRperiod) == 0){ m_sec0 % (m_TRperiod) == 0){
// force rx dirty once times per period // force rx dirty at the end of the period
forceDirty = true; forceDirty = true;
} }