Fixed log duplicating to stderr instead of stdout

Former-commit-id: 4eca34d28cd215d5d9a33435375fe9ae90071fb1
This commit is contained in:
Jérôme Leclercq 2012-11-08 14:22:12 +01:00
parent 1b61c97c8d
commit 6c2bc910d2
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ void NzLog::Write(const NzString& string)
m_file->Write(line);
#if NAZARA_CORE_DUPLICATE_TO_COUT
std::fputs(line.GetConstBuffer(), stderr);
std::fputs(line.GetConstBuffer(), stdout);
#endif
}
}