From 30f18c69d8472ef6c284d01b7fc446e79790fe56 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Sat, 16 Nov 2019 19:49:28 -0500 Subject: [PATCH] Missed frame computation should happen after 1 period...lets set it to 1.5 periods for now --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index fd30713..ff7569d 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -10302,7 +10302,7 @@ void MainWindow::processIdleActivity() { continue; } - if(last.utcTimestamp.secsTo(now) < computePeriodForSubmode(last.submode)){ + if(last.utcTimestamp.secsTo(now) < computePeriodForSubmode(last.submode) * 1.50){ continue; }