From 3221ca2200ce3760bc434966435a95e2e4747b2d Mon Sep 17 00:00:00 2001 From: spycrab Date: Wed, 2 May 2018 18:17:16 +0200 Subject: [PATCH] Updater: Fix UI not showing up --- Source/Core/Updater/Main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/Updater/Main.cpp b/Source/Core/Updater/Main.cpp index 366d235002..0721eb9eee 100644 --- a/Source/Core/Updater/Main.cpp +++ b/Source/Core/Updater/Main.cpp @@ -730,6 +730,9 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine return 0; } + std::thread thread(UI::MessageLoop); + thread.detach(); + UI::SetDescription("Fetching and parsing manifests..."); Manifest this_manifest, next_manifest;