Fixed Linux compile
This commit is contained in:
parent
397208145e
commit
5becfe850a
@ -135,6 +135,7 @@ bool cLog::LogReplaceLine(const char * a_Format, va_list argList)
|
|||||||
__android_log_print(ANDROID_LOG_ERROR, "MCServer", "%s", Line.c_str());
|
__android_log_print(ANDROID_LOG_ERROR, "MCServer", "%s", Line.c_str());
|
||||||
//CallJavaFunction_Void_String(g_JavaThread, "AddToLog", Line );
|
//CallJavaFunction_Void_String(g_JavaThread, "AddToLog", Line );
|
||||||
#else
|
#else
|
||||||
|
#ifdef _WIN32
|
||||||
size_t LineLength = Line.length();
|
size_t LineLength = Line.length();
|
||||||
|
|
||||||
if (m_LastStringSize == 0)
|
if (m_LastStringSize == 0)
|
||||||
@ -150,7 +151,7 @@ bool cLog::LogReplaceLine(const char * a_Format, va_list argList)
|
|||||||
printf("\n%s", Line.c_str()); // We are at line to be replaced, but since we can't, add a new line
|
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
|
|
||||||
if (LineLength < m_LastStringSize) // If last printed line was longer than current, clear this line
|
if (LineLength < m_LastStringSize) // If last printed line was longer than current, clear this line
|
||||||
{
|
{
|
||||||
for (size_t X = 0; X != m_LastStringSize + 1; ++X)
|
for (size_t X = 0; X != m_LastStringSize + 1; ++X)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user