1
0
forked from 0ad/0ad

Fix Windows build

This was SVN commit r16334.
This commit is contained in:
Ykkrosh 2015-02-14 02:22:22 +00:00
parent bb9de80dd4
commit 49222a4c6a

View File

@ -106,7 +106,7 @@ void wdbg_printf(const wchar_t* fmt, ...)
wvsprintfW(buf, fmt, ap); // (return value doesn't indicate whether truncation occurred) wvsprintfW(buf, fmt, ap); // (return value doesn't indicate whether truncation occurred)
va_end(ap); va_end(ap);
debug_puts(buf); OutputDebugStringW(buf);
} }