Commit be3e72f5 authored by mercury233's avatar mercury233 Committed by GitHub

print error to stderr or debug (#2759)

parent 7ca30802
...@@ -1719,6 +1719,11 @@ void Game::AddDebugMsg(const char* msg) { ...@@ -1719,6 +1719,11 @@ void Game::AddDebugMsg(const char* msg) {
} }
} }
void Game::ErrorLog(const char* msg) { void Game::ErrorLog(const char* msg) {
#ifdef _WIN32
OutputDebugStringA(msg);
#else
std::fprintf(stderr, "%s\n", msg);
#endif
FILE* fp = myfopen("error.log", "a"); FILE* fp = myfopen("error.log", "a");
if(!fp) if(!fp)
return; return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment