Import axe.lua
Global lua:Byte Ptr
lua = luaL_newstate()
lua_createtable(lua)
While Not KeyHit(1)
Wend
Uses half of my memory (which is about 850mb).
With lua_newtable it uses all of my memory but it is only a wrapper function for lua_createtable.
Without lua_createtable() it works without any memory leaks. Is anybody experiencing similar problems?
Global lua:Byte Ptr
lua = luaL_newstate()
lua_createtable(lua)
While Not KeyHit(1)
Wend
Uses half of my memory (which is about 850mb).
With lua_newtable it uses all of my memory but it is only a wrapper function for lua_createtable.
Without lua_createtable() it works without any memory leaks. Is anybody experiencing similar problems?