1
0

Added a "nooutbuf" cmdline param.

This forces that the stdout stream uses no buffer, even when not a TTY. Used for running MCServer under ZeroBraneStudio.
This commit is contained in:
madmaxoft
2014-02-27 15:17:42 +01:00
parent 9c6d72a023
commit a23b5d13bd
2 changed files with 18 additions and 13 deletions

View File

@@ -42,7 +42,7 @@ cLog::~cLog()
cLog* cLog::GetInstance()
cLog * cLog::GetInstance()
{
if (s_Log != NULL)
{
@@ -92,7 +92,7 @@ void cLog::ClearLog()
if( m_File )
fclose (m_File);
#endif
m_File = 0;
m_File = NULL;
}