diff options
| author | Ben Beltran <ben@nsovocal.com> | 2018-06-27 15:55:22 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2018-06-27 15:55:22 -0500 |
| commit | f631762a97e1f2afa309bfbc39f83f4fb46b00ee (patch) | |
| tree | 6662b8da2310a684908d41dbdb999ad83d54c0ca /LuaDebugger.cpp | |
| parent | 95a80700dcde3e51cba8fdbb314b0804ba680b20 (diff) | |
Used homebrew from SDL and Lua 5.3
Diffstat (limited to 'LuaDebugger.cpp')
| -rw-r--r-- | LuaDebugger.cpp | 3 |
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 +}
|