| 41 | #include <windows.h> |
| 42 | #include "zstring.h" |
| 43 | void I_DebugPrint(const char *cp) |
| 44 | { |
| 45 | if (IsDebuggerPresent()) |
| 46 | { |
| 47 | auto wstr = WideString(cp); |
| 48 | OutputDebugStringW(wstr.c_str()); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | void I_DebugPrintf(const char *fmt,...) |
| 53 | { |
no test coverage detected