diff options
Diffstat (limited to '')
-rw-r--r-- | src/Log.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,11 +10,11 @@ class cLog private: FILE * m_File; static cLog * s_Log; - + size_t m_LastStringSize = 0; public: cLog(const AString & a_FileName); ~cLog(); - void Log(const char * a_Format, va_list argList); + void Log(const char * a_Format, va_list argList, bool a_ReplaceCurrentLine = false); void Log(const char * a_Format, ...); // tolua_begin void SimpleLog(const char * a_String); |