Remove legacy restart behaviour.

This commit is contained in:
Paul Chote
2017-02-18 11:30:27 +00:00
parent 073a00a2f4
commit 11df0216e5
3 changed files with 2 additions and 12 deletions

View File

@@ -116,7 +116,7 @@ namespace OpenRA
static void GameProcessExited(object sender, EventArgs e)
{
if (!(gameProcess.ExitCode == (int)RunStatus.Success || gameProcess.ExitCode == (int)RunStatus.Restart))
if (gameProcess.ExitCode != (int)RunStatus.Success)
ShowErrorDialog();
Exit();