Set game thread locale to English. Should give English exceptions now.

This commit is contained in:
Brant Martin
2019-08-25 11:04:08 -04:00
parent 624bd5a2a4
commit 7bfc6077b9

View File

@@ -414,6 +414,7 @@ namespace Torch
Game.SignalStart(); Game.SignalStart();
if (!Game.WaitFor(VRageGame.GameState.Running)) if (!Game.WaitFor(VRageGame.GameState.Running))
Log.Warn("Failed to wait for the game to be started"); Log.Warn("Failed to wait for the game to be started");
Invoke(() => Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US"));
} }
/// <inheritdoc /> /// <inheritdoc />