mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 03:09:00 +08:00
16601c6e7e
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
14 lines
425 B
Diff
14 lines
425 B
Diff
diff --git a/src/hello_imgui/internal/poor_man_log.cpp b/src/hello_imgui/internal/poor_man_log.cpp
|
|
index 3aad6f7..e9e474b 100644
|
|
--- a/src/hello_imgui/internal/poor_man_log.cpp
|
|
+++ b/src/hello_imgui/internal/poor_man_log.cpp
|
|
@@ -18,7 +18,7 @@ void PoorManLog(const char* msg, ...)
|
|
va_end(args);
|
|
|
|
#ifdef _MSC_VER
|
|
- OutputDebugString(buffer);
|
|
+ OutputDebugStringA(buffer);
|
|
#else
|
|
printf("%s", buffer);
|
|
#endif
|