Correct the calculation of Age after 0h UTC wrap-around.

This commit is contained in:
Joe Taylor 2022-04-06 12:21:22 -04:00
parent cb03c837d0
commit a78f5d06c4
1 changed files with 1 additions and 0 deletions

View File

@ -3470,6 +3470,7 @@ void MainWindow::ARRL_Digi_Display()
icall.next();
deCall=icall.key();
age=int((m_latestDecodeTime - icall.value().decodeTime)/m_TRperiod + 0.5);
if(age<0) age=age + int(86400/m_TRperiod);
int itx=1;
if(icall.value().txEven) itx=0;
int snr=icall.value().snr;