mirror of
https://github.com/love2d/love.git
synced 2026-08-12 08:30:56 +02:00
Restore lua 5.2/5.3 compatibility (fixes #1408)
This commit is contained in:
@@ -879,4 +879,13 @@ Type *luax_type(lua_State *L, int idx)
|
||||
return Type::byName(luaL_checkstring(L, idx));
|
||||
}
|
||||
|
||||
int luax_resume(lua_State *L, int nargs)
|
||||
{
|
||||
#if LUA_VERSION_NUM >= 502
|
||||
return lua_resume(L, nullptr, nargs);
|
||||
#else
|
||||
return lua_resume(L, nargs);
|
||||
#endif
|
||||
}
|
||||
|
||||
} // love
|
||||
|
||||
Reference in New Issue
Block a user