updated to latest love-android revision (aada9b59bcdf)

This commit is contained in:
fysx
2014-01-20 10:09:26 +01:00
parent ab51b4cc9b
commit ba5f33f9aa
45 changed files with 1112 additions and 50480 deletions
+1 -1
View File
@@ -401,7 +401,7 @@ extern "C" { // Also called from luasocket
template <typename T>
T *luax_checktype(lua_State *L, int idx, const char *name, love::bits type)
{
if (lua_isuserdata(L, idx) == 0)
if (lua_type(L, idx) != LUA_TUSERDATA)
luax_typerror(L, idx, name);
Proxy *u = (Proxy *)lua_touserdata(L, idx);