Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
X3ZvaWQ committed Feb 15, 2024
1 parent ce983d2 commit a163c41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thread.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ export default class LuaThread {
}, 'vii');
}

this.luaApi.lua_sethook(this.address, this.hookFunctionPointer as number, LuaEventMasks.Count, INSTRUCTION_HOOK_COUNT);
this.luaApi.lua_sethook(this.address, this.hookFunctionPointer, LuaEventMasks.Count, INSTRUCTION_HOOK_COUNT);
this.timeout = timeout;
} else if (this.hookFunctionPointer) {
this.hookFunctionPointer = undefined;
Expand Down

0 comments on commit a163c41

Please sign in to comment.