Clean up LineRenderer whitespace (no code changes).

This commit is contained in:
Paul Chote
2013-06-11 18:48:11 +12:00
parent ef95faa9b9
commit da8202a15e

View File

@@ -74,7 +74,7 @@ namespace OpenRA.Graphics
public void FillRect(RectangleF r, Color color)
{
for (float y = r.Top; y < r.Bottom; y++)
for (var y = r.Top; y < r.Bottom; y++)
DrawLine(new float2(r.Left, y), new float2(r.Right, y), color, color);
}