threaded Lua VM

This commit is contained in:
Face
2025-08-08 16:51:21 +03:00
parent d4aa741452
commit 5759ee6221
13 changed files with 1552 additions and 730 deletions

View File

@@ -61,7 +61,6 @@ class LuaSignal:
# Call the function
if vm.lua_pcall(args.size(), 0, 0) != vm.LUA_OK:
print("GURT ERROR in Signal callback: ", vm.lua_tostring(-1))
vm.lua_pop(1)
# Pop the callbacks table
vm.lua_pop(1)