diff options
author | Max Horn | 2003-07-30 18:40:28 +0000 |
---|---|---|
committer | Max Horn | 2003-07-30 18:40:28 +0000 |
commit | 26d05c0190c9cca1444cc7a004c1149b3358ab10 (patch) | |
tree | b4b472b94378fe50cffd6b05313d9e94c73cb70d /scumm | |
parent | cae96f35b071de517b0097419504678c3d271629 (diff) | |
download | scummvm-rg350-26d05c0190c9cca1444cc7a004c1149b3358ab10.tar.gz scummvm-rg350-26d05c0190c9cca1444cc7a004c1149b3358ab10.tar.bz2 scummvm-rg350-26d05c0190c9cca1444cc7a004c1149b3358ab10.zip |
the VC warning for unknown pragmas is now gloabally disabled, no need to work around it locally
svn-id: r9300
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/dialogs.cpp | 5 | ||||
-rw-r--r-- | scumm/gfx.cpp | 5 | ||||
-rw-r--r-- | scumm/scummvm.cpp | 4 |
3 files changed, 0 insertions, 14 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index bdaef6383e..ba2b72d258 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -44,11 +44,6 @@ extern void save_key_mapping(); extern void load_key_mapping(); #endif - -#ifdef _MSC_VER -# pragma warning( disable : 4068 ) -#endif - struct ResString { int num; char string[80]; diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index dcfaf800c9..a56c365a6d 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -29,11 +29,6 @@ #include "util.h" -#ifdef _MSC_VER -# pragma warning( disable : 4068 ) // turn off "unknown pragma" warning -#endif - - enum { kScrolltime = 500, // ms scrolling is supposed to take kPictureDelay = 20 diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index caab9e2aff..faef46e4fd 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -52,10 +52,6 @@ #include <sys/stat.h> #endif -#ifdef _MSC_VER -# pragma warning( disable : 4068 ) // turn off "unknown pragma" warning -#endif - #ifdef _WIN32_WCE extern bool isSmartphone(void); #endif |