Disable internal Error Message

Rely on GameMonitor to display error message.
This commit is contained in:
steelphase
2014-10-11 11:19:04 -04:00
committed by Matthias Mailänder
parent af3e3f795f
commit beef3242b8
2 changed files with 0 additions and 49 deletions

View File

@@ -60,12 +60,6 @@ namespace OpenRA
var rpt = BuildExceptionReport(e).ToString();
Log.Write("exception", "{0}", rpt);
Console.Error.WriteLine(rpt);
if (Game.Settings.Debug.ShowFatalErrorDialog && !Game.Settings.Server.Dedicated)
{
Game.Renderer.Device.Dispose();
Platform.ShowFatalErrorDialog();
}
}
static StringBuilder BuildExceptionReport(Exception e)