Fix garbage screen output on Linux

This commit is contained in:
Stas Degteff
2006-01-20 11:55:12 +00:00
parent 10f34e6765
commit a9cfb10027
51 changed files with 177 additions and 171 deletions

View File

@@ -169,8 +169,14 @@ typedef uint32_t time32_t; /* 32-bit time_t type */
str << out; \
GUI_Print(str); \
}
#define STD_PRINTNL(out) { \
std::strstream str; \
str << out << NL; \
GUI_Print(str); \
}
#else
#define STD_PRINT(out) std::cout << out;
#define STD_PRINTNL(out) std::cout << out << NL;
#endif