From 93ed38e50b625137ebbfc4548a973409839e69f5 Mon Sep 17 00:00:00 2001 From: aramis_acg Date: Tue, 2 Mar 2010 11:54:41 +0000 Subject: [PATCH] FIX: Change call to OutputDebugString to OutputDebugStringA to deal with _UNICODE builds. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@563 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- code/Win32DebugLogStream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Win32DebugLogStream.h b/code/Win32DebugLogStream.h index 36cae6706..3bd4d2066 100644 --- a/code/Win32DebugLogStream.h +++ b/code/Win32DebugLogStream.h @@ -40,7 +40,7 @@ inline Win32DebugLogStream::~Win32DebugLogStream() // Write method inline void Win32DebugLogStream::write(const char* message) { - OutputDebugString( message); + OutputDebugStringA( message); } // ---------------------------------------------------------------------------