From 11cc6576de213b50ff19ca313a09b196cfdb55df Mon Sep 17 00:00:00 2001 From: Ben Anderson Date: Sun, 26 Jun 2005 04:09:51 +0000 Subject: [PATCH] The non-Windows compiles on MinGW where the Windows stuff does not. (Isn't that block compiler-specific and not OS-specific?) --- stepmania/src/StdString.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/StdString.h b/stepmania/src/StdString.h index 01a988b493..b743222f18 100644 --- a/stepmania/src/StdString.h +++ b/stepmania/src/StdString.h @@ -859,7 +859,7 @@ public: void FormatV(const CT* szFormat, va_list argList) { - #if defined(WIN32) + #if defined(WIN32) && !defined(__MINGW32__) CT* pBuf = NULL; int nChars = 1; int nUsed = 0;