Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11666 from AdmiralCurtiss/updater-spaces
WinUpdater: Quote path for args when relaunching Dolphin.
  • Loading branch information
AdmiralCurtiss committed Mar 18, 2023
2 parents 04915d6 + 33d0ec9 commit fb7a371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/WinUpdater/WinUI.cpp
Expand Up @@ -271,7 +271,7 @@ void LaunchApplication(std::string path)
}
else
{
std::wstring cmdline = wpath;
std::wstring cmdline = L"\"" + wpath + L"\"";
STARTUPINFOW startup_info{.cb = sizeof(startup_info)};
PROCESS_INFORMATION process_info;
if (IsTestMode())
Expand Down

0 comments on commit fb7a371

Please sign in to comment.