diff --git a/OpenRA.Mods.Common/Widgets/Logic/Ingame/GameTimerLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/Ingame/GameTimerLogic.cs index 6fb1ca0a79..e163ce22eb 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/Ingame/GameTimerLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/Ingame/GameTimerLogic.cs @@ -54,7 +54,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic var timeLimit = tlm != null ? tlm.TimeLimit : 0; var displayTick = timeLimit > 0 ? timeLimit - world.WorldTick : world.WorldTick; - return WidgetUtils.FormatTime(displayTick, timestep); + return WidgetUtils.FormatTime(Math.Max(0, displayTick), timestep); }; }