Process the C++ string before printf() it directly to console

This commit is contained in:
Marco Cawthorne 2021-06-03 00:16:11 +02:00
parent d716ed379c
commit 6c9bcf04af
1 changed files with 3 additions and 9 deletions

View File

@ -33,15 +33,9 @@
std::size_t Sys_Print(int level, const char *buf, std::size_t length)
{
bool contains_newline = std::find(buf, buf + length, '\n') != buf + length;
if (SYS_STD) {
if (contains_newline)
printf("%s", buf);
else
printf("%s\n", buf);
}
StringOutputStream name(256);
name << StringRange(buf, buf + length);
printf(name.c_str());
return length;
}