ソースを参照

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;
}


読み込み中…
キャンセル
保存