1
0
Fork 0

Fixed compilation in ManualBindings

This commit is contained in:
madmaxoft 2013-08-06 19:27:48 +02:00
parent 4034136922
commit 0281b1db6e
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ cPlugin_NewLua * GetLuaPlugin(lua_State * L)
if (!lua_islightuserdata(L, -1))
{
LOGWARNING("%s: cannot get plugin instance, what have you done to my Lua state?", __FUNCTION__);
lua_pop(L);
lua_pop(L, 1);
return NULL;
}
cPlugin_NewLua * Plugin = (cPlugin_NewLua *)lua_topointer(L, -1);