mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +00:00
Merge pull request #11666 from AdmiralCurtiss/updater-spaces
WinUpdater: Quote path for args when relaunching Dolphin.
This commit is contained in:
commit
fb7a371ac0
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ void LaunchApplication(std::string path)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
std::wstring cmdline = wpath;
|
std::wstring cmdline = L"\"" + wpath + L"\"";
|
||||||
STARTUPINFOW startup_info{.cb = sizeof(startup_info)};
|
STARTUPINFOW startup_info{.cb = sizeof(startup_info)};
|
||||||
PROCESS_INFORMATION process_info;
|
PROCESS_INFORMATION process_info;
|
||||||
if (IsTestMode())
|
if (IsTestMode())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue