Updater: Fix UI not showing up

This commit is contained in:
spycrab 2018-05-02 18:17:16 +02:00
parent 40cf07d8e7
commit 3221ca2200

View File

@ -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;