mirror of
https://github.com/love2d/love.git
synced 2026-08-12 08:30:56 +02:00
Functions that take a boolean argument now properly type-check for it.
--HG-- branch : minor
This commit is contained in:
@@ -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++;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user