From 5a7c62e24ab2e187299b3c3d2ccb85eef433844c Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Mon, 27 Dec 2010 21:19:38 +1300 Subject: [PATCH] fix bogus formatstring in ChooseReplayFilename() --- OpenRA.Game/Game.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Game.cs b/OpenRA.Game/Game.cs index 2147062905..c91946b27f 100755 --- a/OpenRA.Game/Game.cs +++ b/OpenRA.Game/Game.cs @@ -63,7 +63,7 @@ namespace OpenRA static string ChooseReplayFilename() { - return DateTime.UtcNow.ToString("OpenRA-yyyy-MM-ddThhmmssZ.rep"); + return DateTime.UtcNow.ToString("OpenRA-yyyy-MM-ddTHHmmssZ.rep"); } static void JoinInner(OrderManager om)