aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-07-20 19:19:45 +0000
committerPaweł Kołodziejski2003-07-20 19:19:45 +0000
commitb54dee99a5dcd8772d01de8e516254ec9f923264 (patch)
tree608ef45cb302cfc5a28a22bd376f20fd3905fa08 /scumm
parent594c1f542d18fe5414c5ddf5fd730fdd032e3007 (diff)
downloadscummvm-rg350-b54dee99a5dcd8772d01de8e516254ec9f923264.tar.gz
scummvm-rg350-b54dee99a5dcd8772d01de8e516254ec9f923264.tar.bz2
scummvm-rg350-b54dee99a5dcd8772d01de8e516254ec9f923264.zip
fixed warnings
svn-id: r9096
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scummvm.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index cc143cda35..16b7a6c042 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -56,6 +56,10 @@
extern void drawError(char*);
#endif
+#ifdef _MSC_VER
+# pragma warning( disable : 4068 ) // turn off "unknown pragma" warning
+#endif
+
// Use g_scumm from error() ONLY
Scumm *g_scumm = 0;
ScummDebugger *g_debugger;