mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-21 19:55:20 -05:00
Correct the calculation of Age after 0h UTC wrap-around.
This commit is contained in:
parent
cb03c837d0
commit
a78f5d06c4
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user