From 5ebc73633932e30bf2426d378657ca820c659d3a Mon Sep 17 00:00:00 2001 From: Pascal Thomet Date: Mon, 5 Aug 2024 12:53:32 +0200 Subject: [PATCH] poor_man_log: use OutputDebugStringA (see vcpkg: https://github.com/microsoft/vcpkg/pull/40185) --- src/hello_imgui/internal/poor_man_log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello_imgui/internal/poor_man_log.cpp b/src/hello_imgui/internal/poor_man_log.cpp index 3aad6f7b..e9e474bf 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