]> git.mxchange.org Git - simgear.git/commitdiff
Oops, WIN32 typo fix.
authorehofman <ehofman>
Tue, 22 Nov 2005 18:42:16 +0000 (18:42 +0000)
committerehofman <ehofman>
Tue, 22 Nov 2005 18:42:16 +0000 (18:42 +0000)
simgear/screen/RenderTexture.cpp

index 51ed1b9afca6d4cd6bfd194edde986c394168ad5..4f046c88863d72971878652a10fd69b62351e471 100644 (file)
@@ -738,7 +738,7 @@ bool RenderTexture::Reset(const char *strMode, ...)
     char strBuffer[256];
     va_start(args,strMode);
 #if defined _WIN32 && !defined __CYGWIN__
-    _vsnSG_LOG(SG_GL, SG_INFO,  strBuffer, 256, strMode, args );
+    _vsnprintf( strBuffer, 256, strMode, args );
 #else
     vsnprintf( strBuffer, 256, strMode, args );
 #endif