1
0

Revert "A newline issue is resolved"

This reverts commit 397208145e.
This commit is contained in:
Tiger Wang 2014-02-02 20:09:47 +00:00
parent 070962fb8a
commit e4b666989d
2 changed files with 3 additions and 1 deletions

View File

@ -147,7 +147,7 @@ bool cLog::LogReplaceLine(const char * a_Format, va_list argList)
if ((size_t)((csbi.srWindow.Right - csbi.srWindow.Left) + 1) < LineLength)
{
printf("\n%s", Line.c_str()); // We are at line to be replaced, but since we can't, add a new line
printf("\r%s", Line.c_str());
return false;
}
#ifdef _WIN32

View File

@ -150,6 +150,7 @@ void cMCLogger::Log(const char * a_Format, va_list a_ArgList, bool a_ShouldRepla
if (!m_Log->LogReplaceLine(a_Format, a_ArgList))
{
m_BeginLineUpdate = false;
puts("");
}
ResetColor();
@ -161,6 +162,7 @@ void cMCLogger::Log(const char * a_Format, va_list a_ArgList, bool a_ShouldRepla
if (!m_Log->LogReplaceLine(a_Format, a_ArgList))
{
m_BeginLineUpdate = false;
puts("");
}
ResetColor();
#endif