Renamed CORE_DUPLICATE_TO_COUT to CORE_DUPLICATE_LOG_TO_COUT

Former-commit-id: fc877ab4467261e052f167e39471bc8b3b0b6c5e
This commit is contained in:
Lynix
2013-08-24 21:59:21 +02:00
parent 3e132cb445
commit bf4b762a5d
2 changed files with 7 additions and 7 deletions

View File

@@ -10,7 +10,7 @@
#include <ctime>
#include <cstring>
#if NAZARA_CORE_DUPLICATE_TO_COUT
#if NAZARA_CORE_DUPLICATE_LOG_TO_COUT
#include <cstdio>
#endif
@@ -130,7 +130,7 @@ void NzLog::Write(const NzString& string)
if (m_file->IsOpen())
m_file->Write(line);
#if NAZARA_CORE_DUPLICATE_TO_COUT
#if NAZARA_CORE_DUPLICATE_LOG_TO_COUT
std::fputs(line.GetConstBuffer(), stdout);
#endif
}