Skip to content

Commit

Permalink
Fix #10: Game freezes when launched until openlauncher is closed
Browse files Browse the repository at this point in the history
stdout buffer was getting filled because openlauncher never read it, causing the game to halt.
  • Loading branch information
IntelOrca committed Mar 14, 2023
1 parent 1d32f62 commit 1719525
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/IntelOrca.OpenLauncher.Core/InstallService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ public Task Launch()
{
var psi = new ProcessStartInfo(ExecutablePath)
{
RedirectStandardError = true,
RedirectStandardOutput = true
RedirectStandardError = true
};
var process = Process.Start(psi);
var outputBuilder = new StringBuilder();
Expand Down

0 comments on commit 1719525

Please sign in to comment.