forgot a lua_pop(_lua, 16)

This commit is contained in:
mp3butcher 2017-04-05 17:59:06 +02:00
parent 912f9e18cb
commit 0993edda11

View File

@ -3543,6 +3543,7 @@ bool LuaScriptEngine::getValue(int pos, osg::Matrixf& value) const
value(r,c) = lua_tonumber(_lua, -16+(r*4+c));
}
}
lua_pop(_lua, 16);
return true;
}