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:
parent
396f091c85
commit
31ab72334b
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue