From: Daniel Karbach Date: Thu, 9 Jan 2014 07:11:06 +0000 (+0100) Subject: fix grid2 low step optimization X-Git-Url: http://git.localhorst.tv/?p=space.git;a=commitdiff_plain;h=9a1076ae9a803c51147645b1ddac873ee7d1e08e fix grid2 low step optimization --- diff --git a/src/graphics/Canvas.cpp b/src/graphics/Canvas.cpp index 6241ab3..768037e 100644 --- a/src/graphics/Canvas.cpp +++ b/src/graphics/Canvas.cpp @@ -183,7 +183,7 @@ void Grid2Impl( canv.SetColor(c1); canv.FillRect(pos, size); canv.SetColor(c2); - GridImpl(canv, pos, size, step); + GridImpl(canv, pos, size, step * Vector(n)); return; }