From 84fe7f993f4cc124698ee8ab0758eff402676343 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Wed, 31 May 2017 22:29:36 +0200 Subject: [PATCH] Fixed issue with lua_debug struct size causing corruption --- Lua.API.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lua.API.pas b/Lua.API.pas index 6ef1730..d10642a 100644 --- a/Lua.API.pas +++ b/Lua.API.pas @@ -340,7 +340,7 @@ type isvararg: Byte; istailcall: Byte; short_src: array[0..LUA_IDSIZE - 1] of AnsiChar; - //struct CallInfo *i_ci; /* active function */ + i_ci: Integer; end; { Functions to be called by the debugger in specific events }