From be25a2155b670e7f81ac10481a0b869bb3ecddf0 Mon Sep 17 00:00:00 2001 From: Zach Bacon Date: Sun, 31 Jul 2016 09:30:16 -0400 Subject: [PATCH] This should fix the update issue, I'll release a test binary soon. --- src/wx/panel.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/wx/panel.cpp b/src/wx/panel.cpp index 2aeae37a..37ee3ba8 100644 --- a/src/wx/panel.cpp +++ b/src/wx/panel.cpp @@ -958,9 +958,7 @@ void GameArea::OnIdle(wxIdleEvent& event) // Check for online updates if (gopts.onlineupdates > 0 && !emusys) { - if ((wxDateTime::Now().GetTicks() - gopts.last_update) > gopts.onlineupdates * 24 * 60 * 60) { - wxGetApp().frame->CheckForUpdates(); - } + wxGetApp().frame->CheckForUpdates(); } #endif