1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-15 14:09:06 +00:00

Fix copy-paste oops.

This commit is contained in:
fgenesis 2013-08-31 16:49:22 +02:00
parent 396f091c85
commit 31ab72334b

View file

@ -1630,14 +1630,14 @@ luaFunc(quad_setRenderCenter)
{
Quad *b = getQuad(L);
if (b)
b->renderBorder = getBool(L, 2);
b->renderCenter = getBool(L, 2);
luaReturnNil();
}
luaFunc(quad_isRenderCenter)
{
Quad *b = getQuad(L);
luaReturnBool(b ? b->renderBorder : false);
luaReturnBool(b ? b->renderCenter : false);
}