diff options
author | Paweł Kołodziejski | 2003-03-27 07:13:29 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-03-27 07:13:29 +0000 |
commit | 4819f360da2dda909c48b738ea199bf6af273af7 (patch) | |
tree | 3a2fc39bd3aeff7ceb665bb5dd30e644c849b291 | |
parent | a8212179eb7a4543c6986f86a1c934e60f502b41 (diff) | |
download | scummvm-rg350-4819f360da2dda909c48b738ea199bf6af273af7.tar.gz scummvm-rg350-4819f360da2dda909c48b738ea199bf6af273af7.tar.bz2 scummvm-rg350-4819f360da2dda909c48b738ea199bf6af273af7.zip |
fixed compilation under VC6
svn-id: r6873
-rw-r--r-- | gui/PopUpWidget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/PopUpWidget.cpp b/gui/PopUpWidget.cpp index eaebc8ebc4..2a8402fe98 100644 --- a/gui/PopUpWidget.cpp +++ b/gui/PopUpWidget.cpp @@ -24,6 +24,9 @@ #include "newgui.h" #include "common/engine.h" +#ifdef _MSC_VER +# pragma warning( disable : 4068 ) // unknown pragmas +#endif #define UP_DOWN_BOX_HEIGHT 10 |