mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
AutoUpdater: Don't show a spinning wheel cursor when delaying update
This commit is contained in:
parent
9628333b86
commit
1f3310874b
@ -134,6 +134,7 @@ void AutoUpdateChecker::TriggerUpdate(const AutoUpdateChecker::NewVersionInforma
|
|||||||
// Run the updater!
|
// Run the updater!
|
||||||
std::wstring command_line = MakeUpdaterCommandLine(updater_flags);
|
std::wstring command_line = MakeUpdaterCommandLine(updater_flags);
|
||||||
STARTUPINFO sinfo = {sizeof(info)};
|
STARTUPINFO sinfo = {sizeof(info)};
|
||||||
|
sinfo.dwFlags = STARTF_FORCEOFFFEEDBACK; // No hourglass cursor after starting the process.
|
||||||
PROCESS_INFORMATION pinfo;
|
PROCESS_INFORMATION pinfo;
|
||||||
INFO_LOG(COMMON, "Updater command line: %s", UTF16ToUTF8(command_line).c_str());
|
INFO_LOG(COMMON, "Updater command line: %s", UTF16ToUTF8(command_line).c_str());
|
||||||
if (!CreateProcessW(UTF8ToUTF16(reloc_updater_path).c_str(),
|
if (!CreateProcessW(UTF8ToUTF16(reloc_updater_path).c_str(),
|
||||||
|
Loading…
Reference in New Issue
Block a user