fix action history with frames

This commit is contained in:
2019-10-19 16:06:43 +02:00
parent aa41703df5
commit e25de3c454
8 changed files with 121 additions and 80 deletions

View File

@@ -119,8 +119,7 @@ void LogRemote::log(const char* format, ...)
m_tmp.push_back(line);
}
#if _WIN32
auto line_console = "DBG: " + line;
OutputDebugStringA(line_console.c_str());
OutputDebugStringA(("DBG: " + line).c_str());
#endif
}
void LogRemote::log(const wchar_t* format, ...)