Make logger stdout cross platform again

This commit is contained in:
Tixx
2025-09-21 21:54:24 +02:00
parent 1209ff88e2
commit a669557726
2 changed files with 8 additions and 6 deletions

View File

@@ -21,12 +21,14 @@
#define beammp_fs_string std::wstring
#define beammp_fs_char wchar_t
#define beammp_wide(str) L##str
#define beammp_stdout std::wcout
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#else
#define beammp_fs_string std::string
#define beammp_fs_char char
#define beammp_wide(str) str
#define beammp_stdout std::cout
#endif
namespace Utils {