From 281119b812bbbc655519e48cab9885247d62d262 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Tue, 24 Jun 2025 15:33:50 +1000 Subject: [PATCH] Qt: Always perform update check on startup --- src/duckstation-qt/qthost.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/duckstation-qt/qthost.cpp b/src/duckstation-qt/qthost.cpp index 78056701f..3760d0be7 100644 --- a/src/duckstation-qt/qthost.cpp +++ b/src/duckstation-qt/qthost.cpp @@ -2998,11 +2998,12 @@ int main(int argc, char* argv[]) else s_start_fullscreen_ui_fullscreen = false; + // Always kick off update check. It'll take over if the user is booting a game fullscreen. + main_window->startupUpdateCheck(); + // Skip the update check if we're booting a game directly. if (autoboot) g_emu_thread->bootSystem(std::move(autoboot)); - else if (!s_nogui_mode) - main_window->startupUpdateCheck(); // This doesn't return until we exit. result = app.exec();