Functions that take a boolean argument now properly type-check for it.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2017-08-14 22:56:20 -03:00
parent fea9f82cfa
commit fee157b6b9
21 changed files with 50 additions and 42 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ int w_Transform_setMatrix(lua_State *L)
int idx = 2;
if (lua_isboolean(L, idx))
{
columnmajor = lua_toboolean(L, idx);
columnmajor = luax_toboolean(L, idx);
idx++;
}