]> git.jsancho.org Git - lugaru.git/commitdiff
Added redefinition for MSVC
authorNeal Gompa <ngompa13@gmail.com>
Sun, 30 May 2010 06:04:17 +0000 (01:04 -0500)
committerNeal Gompa <ngompa13@gmail.com>
Sun, 30 May 2010 06:04:17 +0000 (01:04 -0500)
Source/GameTick.cpp

index 2328eb8f0ce50367d660c7126c2b856466d8ab2a..8138608f19f01a8c7e85a23631300f4138587ed4 100644 (file)
@@ -34,6 +34,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 using namespace std;
 
+// Added more evilness needed for MSVC
+#ifdef _MSC_VER
+       #define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n)
+       #define snprintf(buf, size, format, ...) _sprintf_p(buf, size, format)
+#endif
+
+
 extern float multiplier;
 extern XYZ viewer;
 extern int environment;