瀏覽代碼

lua: print the actual panic message before dumping a callstack.

legacy
Sam Hocevar sam 11 年之前
父節點
當前提交
5d57b53eb0
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      src/world.cpp

+ 2
- 0
src/world.cpp 查看文件

@@ -33,6 +33,8 @@ class WorldData

static int LuaPanic(lua_State* L)
{
char const *message = lua_tostring(L, -1);
Log::Error("%s\n", message);
DebugAbort();
return 0;
}


Loading…
取消
儲存