Browse Source

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
aramis_acg 15 years ago
parent
commit
93ed38e50b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/Win32DebugLogStream.h

+ 1 - 1
code/Win32DebugLogStream.h

@@ -40,7 +40,7 @@ inline Win32DebugLogStream::~Win32DebugLogStream()
 //	Write method
 //	Write method
 inline void Win32DebugLogStream::write(const char* message)
 inline void Win32DebugLogStream::write(const char* message)
 {
 {
-	OutputDebugString( message);
+	OutputDebugStringA( message);
 }
 }
 
 
 // ---------------------------------------------------------------------------
 // ---------------------------------------------------------------------------