From 198a51e5e064402cad8606326fc4bb9c8d12ebbc Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 20 Jun 2015 17:42:38 +0100 Subject: [PATCH] Fix VisibleCellsInsideBounds. --- OpenRA.Game/Graphics/Viewport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Graphics/Viewport.cs b/OpenRA.Game/Graphics/Viewport.cs index 8ea0f549d5..f3780aa8a9 100644 --- a/OpenRA.Game/Graphics/Viewport.cs +++ b/OpenRA.Game/Graphics/Viewport.cs @@ -271,7 +271,7 @@ namespace OpenRA.Graphics { if (cellsDirty) { - cells = CalculateVisibleCells(false); + cells = CalculateVisibleCells(true); cellsDirty = false; }