You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Mac fix for launching html5 on chrome
[CL 2339718 by James Moran in Main branch]
This commit is contained in:
@@ -384,7 +384,7 @@ public class HTML5Platform : Platform
|
||||
argument = "";
|
||||
|
||||
// Chrome issue. Firefox may work like this in the future
|
||||
bool bBrowserWillSpawnProcess = browserPath.Contains("chrome");
|
||||
bool bBrowserWillSpawnProcess = browserPath.Contains("chrome") || (browserPath.Contains("Google Chrome") && Utils.IsRunningOnMono);
|
||||
|
||||
ProcessResult SubProcess = null;
|
||||
ProcessResult ClientProcess = Run(browserPath, argument, null, ClientRunFlags | ERunOptions.NoWaitForExit);
|
||||
|
||||
Reference in New Issue
Block a user