Skip to content
Permalink
Browse files
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.
@@ -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())

0 comments on commit fb7a371

Please sign in to comment.