From 98dbdc1570959a7f36f27678bfad6f951fab134c Mon Sep 17 00:00:00 2001 From: Squibid Date: Fri, 5 Dec 2025 20:10:35 -0500 Subject: [PATCH] add another marker --- src/types/hook.zig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types/hook.zig b/src/types/hook.zig index 511e84a..e25107b 100644 --- a/src/types/hook.zig +++ b/src/types/hook.zig @@ -38,6 +38,8 @@ pub fn callback(self: *const Hook, args: anytype) void { i = k; } - Lua.state.protectedCall(.{ .args = i }) catch { }; + Lua.state.protectedCall(.{ .args = i }) catch { + // TODO: add a callback to remote lua when that gets merged + }; Lua.state.pop(-1); }