Oops, WIN32 typo fix.

This commit is contained in:
ehofman
2005-11-22 18:42:16 +00:00
parent b108621a59
commit 60f1d21914

View 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