aboutsummaryrefslogtreecommitdiff
path: root/LuaDebugger.cpp
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2018-06-27 15:55:22 -0500
committerBen Beltran <ben@nsovocal.com>2018-06-27 15:55:22 -0500
commitf631762a97e1f2afa309bfbc39f83f4fb46b00ee (patch)
tree6662b8da2310a684908d41dbdb999ad83d54c0ca /LuaDebugger.cpp
parent95a80700dcde3e51cba8fdbb314b0804ba680b20 (diff)
Update project so it compilesHEADmain
Used homebrew from SDL and Lua 5.3
Diffstat (limited to 'LuaDebugger.cpp')
-rw-r--r--LuaDebugger.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/LuaDebugger.cpp b/LuaDebugger.cpp
index 18f3909..5e363f1 100644
--- a/LuaDebugger.cpp
+++ b/LuaDebugger.cpp
@@ -64,7 +64,6 @@ static void LuaHook (lua_State *lua, lua_Debug *ar)
LuaHookCall (lua);
break;
case LUA_HOOKRET:
- case LUA_HOOKTAILRET:
LuaHookRet (lua);
break;
case LUA_HOOKLINE:
@@ -119,4 +118,4 @@ void CLuaDebugger::ErrorRun (int iErrorCode)
// Get the error string that appears on top of stack when a function
// fails to run
printf ("Error: %s\n", lua_tostring ((lua_State *) m_vm, -1));
-} \ No newline at end of file
+}