vcpkg/ports/hello-imgui/fix-upw.patch
jim wang 16601c6e7e
[imgui] Update to 1.91.0 (#40185)
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2024-08-10 02:11:17 -07:00

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