From 4a606474c423bdf4d67e87b58f391fefdb58ed84 Mon Sep 17 00:00:00 2001 From: Brendan Hagan Date: Sun, 14 Aug 2022 17:27:19 -0400 Subject: [PATCH] misc: disable update checking on startup --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index a43f33f1..ca0ab3f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -284,7 +284,7 @@ int MSE::OnRun() { } int MSE::runGUI() { - check_updates(); + //check_updates(); // FIXME: Disable update checking on startup. Likely want to either replace the Update Checker or remove it entirely. return wxApp::OnRun(); }