[lua] Fix for Color:newWith

This commit is contained in:
badlogic 2016-11-03 14:27:54 +01:00
parent 5b089cb678
commit 3ab208ed82

View File

@ -45,7 +45,7 @@ end
function Color.newWith (r, g, b, a)
local self = {
r = a, g = g, b = b, a = a
r = r, g = g, b = b, a = a
}
setmetatable(self, Color)