diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-02 21:10:23 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-02 21:10:23 +0100 |
commit | 6ef5c057aa2a36dbd54f56780e5700e753b37bcf (patch) | |
tree | 5af1787afe89de7b2221330332fbae63b1c30a30 /src/MCLogger.cpp | |
parent | Revert "Added a comment" (diff) | |
download | cuberite-6ef5c057aa2a36dbd54f56780e5700e753b37bcf.tar cuberite-6ef5c057aa2a36dbd54f56780e5700e753b37bcf.tar.gz cuberite-6ef5c057aa2a36dbd54f56780e5700e753b37bcf.tar.bz2 cuberite-6ef5c057aa2a36dbd54f56780e5700e753b37bcf.tar.lz cuberite-6ef5c057aa2a36dbd54f56780e5700e753b37bcf.tar.xz cuberite-6ef5c057aa2a36dbd54f56780e5700e753b37bcf.tar.zst cuberite-6ef5c057aa2a36dbd54f56780e5700e753b37bcf.zip |
Diffstat (limited to '')
-rw-r--r-- | src/MCLogger.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/MCLogger.cpp b/src/MCLogger.cpp index aebe3e1c9..632ea2efe 100644 --- a/src/MCLogger.cpp +++ b/src/MCLogger.cpp @@ -11,10 +11,6 @@ cMCLogger * cMCLogger::s_MCLogger = NULL; bool g_ShouldColorOutput = false; -/** Flag to show whether a 'replace line' log command has been issued -Used to decide when to put a newline */ -bool g_BeginLineUpdate = false; - #ifdef _WIN32 #include <io.h> // Needed for _isatty(), not available on Linux @@ -127,14 +123,14 @@ void cMCLogger::Log(const char * a_Format, va_list a_ArgList, bool a_ShouldRepla { cCSLock Lock(m_CriticalSection); - if (!g_BeginLineUpdate && a_ShouldReplaceLine) + if (!m_BeginLineUpdate && a_ShouldReplaceLine) { a_ShouldReplaceLine = false; // Print a normal line first if this is the initial replace line - g_BeginLineUpdate = true; + m_BeginLineUpdate = true; } - else if (g_BeginLineUpdate && !a_ShouldReplaceLine) + else if (m_BeginLineUpdate && !a_ShouldReplaceLine) { - g_BeginLineUpdate = false; + m_BeginLineUpdate = false; } if (a_ShouldReplaceLine) |