Skip to content

Commit

Permalink
poor_man_log: use OutputDebugStringA (see vcpkg: microsoft/vcpkg#40185)
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Aug 5, 2024
1 parent e8eac28 commit 5ebc736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hello_imgui/internal/poor_man_log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void PoorManLog(const char* msg, ...)
va_end(args);

#ifdef _MSC_VER
OutputDebugString(buffer);
OutputDebugStringA(buffer);
#else
printf("%s", buffer);
#endif
Expand Down

0 comments on commit 5ebc736

Please sign in to comment.