[Scummvm-cvs-logs] CVS: scummvm/scumm dialogs.cpp,1.65,1.66 gfx.cpp,2.179,2.180 scummvm.cpp,2.302,2.303
Jamieson Christian
jamieson630 at users.sourceforge.net
Wed Jul 30 23:47:11 CEST 2003
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv10018/scummvm/scumm
Modified Files:
dialogs.cpp gfx.cpp scummvm.cpp
Log Message:
Disabled unknown pragma warning in MSVC-6.
Index: dialogs.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/dialogs.cpp,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -d -r1.65 -r1.66
--- dialogs.cpp 30 Jul 2003 18:40:27 -0000 1.65
+++ dialogs.cpp 31 Jul 2003 06:46:41 -0000 1.66
@@ -36,6 +36,11 @@
#include "gui/ListWidget.h"
#include "common/config-file.h"
+#ifdef _MSC_VER
+// Disable "unknown pragma" warning in MSVC 6
+#pragma warning(disable : 4068)
+#endif
+
#ifdef _WIN32_WCE
#include "gapi_keys.h"
extern bool _get_key_mapping;
Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.179
retrieving revision 2.180
diff -u -d -r2.179 -r2.180
--- gfx.cpp 30 Jul 2003 18:40:27 -0000 2.179
+++ gfx.cpp 31 Jul 2003 06:46:41 -0000 2.180
@@ -28,6 +28,10 @@
#include "usage_bits.h"
#include "util.h"
+#ifdef _MSC_VER
+// Disable "unknown pragma" warning in MSVC 6
+#pragma warning(disable : 4068)
+#endif
enum {
kScrolltime = 500, // ms scrolling is supposed to take
Index: scummvm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scummvm.cpp,v
retrieving revision 2.302
retrieving revision 2.303
diff -u -d -r2.302 -r2.303
--- scummvm.cpp 30 Jul 2003 18:40:27 -0000 2.302
+++ scummvm.cpp 31 Jul 2003 06:46:41 -0000 2.303
@@ -52,6 +52,11 @@
#include <sys/stat.h>
#endif
+#ifdef _MSC_VER
+// Disable "unknown pragma" warning in MSVC 6
+#pragma warning(disable : 4068)
+#endif
+
#ifdef _WIN32_WCE
extern bool isSmartphone(void);
#endif
More information about the Scummvm-git-logs
mailing list