mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 03:49:29 +08:00
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
|