A newline issue is resolved
This commit is contained in:
parent
6b18add09b
commit
397208145e
@ -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)
|
if ((size_t)((csbi.srWindow.Right - csbi.srWindow.Left) + 1) < LineLength)
|
||||||
{
|
{
|
||||||
printf("\r%s", Line.c_str());
|
printf("\n%s", Line.c_str()); // We are at line to be replaced, but since we can't, add a new line
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
@ -150,7 +150,6 @@ void cMCLogger::Log(const char * a_Format, va_list a_ArgList, bool a_ShouldRepla
|
|||||||
if (!m_Log->LogReplaceLine(a_Format, a_ArgList))
|
if (!m_Log->LogReplaceLine(a_Format, a_ArgList))
|
||||||
{
|
{
|
||||||
m_BeginLineUpdate = false;
|
m_BeginLineUpdate = false;
|
||||||
puts("");
|
|
||||||
}
|
}
|
||||||
ResetColor();
|
ResetColor();
|
||||||
|
|
||||||
@ -162,7 +161,6 @@ void cMCLogger::Log(const char * a_Format, va_list a_ArgList, bool a_ShouldRepla
|
|||||||
if (!m_Log->LogReplaceLine(a_Format, a_ArgList))
|
if (!m_Log->LogReplaceLine(a_Format, a_ArgList))
|
||||||
{
|
{
|
||||||
m_BeginLineUpdate = false;
|
m_BeginLineUpdate = false;
|
||||||
puts("");
|
|
||||||
}
|
}
|
||||||
ResetColor();
|
ResetColor();
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user