Skip to content

Commit 1719525

Browse files
committed
Fix #10: Game freezes when launched until openlauncher is closed
stdout buffer was getting filled because openlauncher never read it, causing the game to halt.
1 parent 1d32f62 commit 1719525

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/IntelOrca.OpenLauncher.Core/InstallService.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ public Task Launch()
7171
{
7272
var psi = new ProcessStartInfo(ExecutablePath)
7373
{
74-
RedirectStandardError = true,
75-
RedirectStandardOutput = true
74+
RedirectStandardError = true
7675
};
7776
var process = Process.Start(psi);
7877
var outputBuilder = new StringBuilder();

0 commit comments

Comments
 (0)