aboutsummaryrefslogtreecommitdiff
path: root/scummsys.h
diff options
context:
space:
mode:
authorClaudio Matsuoka2001-11-03 06:33:29 +0000
committerClaudio Matsuoka2001-11-03 06:33:29 +0000
commit49c07dc041e7f2a98720b3c349e4cd6dadbc1962 (patch)
treee51fd303e1b1e6e18ce17733688834b0ac025a27 /scummsys.h
parentbdd798b163ab6c2540b6f4493f4d45f6f409ddc4 (diff)
downloadscummvm-rg350-49c07dc041e7f2a98720b3c349e4cd6dadbc1962.tar.gz
scummvm-rg350-49c07dc041e7f2a98720b3c349e4cd6dadbc1962.tar.bz2
scummvm-rg350-49c07dc041e7f2a98720b3c349e4cd6dadbc1962.zip
Protecting VC++-specific pragmas with ifdef _MSC_VER to allow
a clean Cygwin build. svn-id: r3452
Diffstat (limited to 'scummsys.h')
-rw-r--r--scummsys.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/scummsys.h b/scummsys.h
index 40fba9567a..b4a07906a5 100644
--- a/scummsys.h
+++ b/scummsys.h
@@ -17,6 +17,10 @@
*
* Change Log:
* $Log$
+ * Revision 1.6 2001/11/03 06:33:29 cmatsuoka
+ * Protecting VC++-specific pragmas with ifdef _MSC_VER to allow
+ * a clean Cygwin build.
+ *
* Revision 1.5 2001/10/23 19:51:50 strigeus
* recompile not needed when switching games
* debugger skeleton implemented
@@ -39,8 +43,11 @@
#if defined(WIN32)
+/* Pragmas are VC++-specific */
+#if defined(_MSC_VER)
#pragma warning (disable: 4244)
#pragma warning (disable: 4101)
+#endif
#define scumm_stricmp stricmp