Updated love.window.checkMode to work when a windowflag table is used as the third parameter

This commit is contained in:
Alex Szpakowski
2013-08-22 20:28:50 -03:00
parent 713e050b56
commit 035130533b
+12 -1
View File
@@ -32,7 +32,18 @@ int w_checkMode(lua_State *L)
{
int w = luaL_checkint(L, 1);
int h = luaL_checkint(L, 2);
bool fs = luax_toboolean(L, 3);
bool fs = false;
if (lua_istable(L, 3))
{
lua_getfield(L, 3, "fullscreen");
fs = luax_toboolean(L, -1);
lua_pop(L, 1);
}
else
fs = luax_toboolean(L, 3);
luax_pushboolean(L, instance->checkWindowSize(w, h, fs));
return 1;
}