Qt: Always perform update check on startup

This commit is contained in:
Stenzek 2025-06-24 15:33:50 +10:00
parent a7d0a8a485
commit 281119b812
No known key found for this signature in database

View File

@ -2998,11 +2998,12 @@ int main(int argc, char* argv[])
else else
s_start_fullscreen_ui_fullscreen = false; 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. // Skip the update check if we're booting a game directly.
if (autoboot) if (autoboot)
g_emu_thread->bootSystem(std::move(autoboot)); g_emu_thread->bootSystem(std::move(autoboot));
else if (!s_nogui_mode)
main_window->startupUpdateCheck();
// This doesn't return until we exit. // This doesn't return until we exit.
result = app.exec(); result = app.exec();