Merge pull request #29 from italomaia/patch-1

Merge #29: remove redundant variable in shapes.lua
This commit is contained in:
vrld 2013-12-30 10:50:31 -08:00
commit cabee18c81

View File

@ -383,7 +383,7 @@ end
function ConvexPolygonShape:draw(mode)
local mode = mode or 'line'
mode = mode or 'line'
love.graphics.polygon(mode, self._polygon:unpack())
end