diff options
author | Paweł Kołodziejski | 2003-07-31 18:35:01 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-07-31 18:35:01 +0000 |
commit | e5e117006aa762cb485b493f505fe9e742536cea (patch) | |
tree | 8869e373ec420250c3e1f1eea6604f4a3cdf4591 /sky | |
parent | bb8d0361e7bc0e2208f9cd309c1954228c84edc8 (diff) | |
download | scummvm-rg350-e5e117006aa762cb485b493f505fe9e742536cea.tar.gz scummvm-rg350-e5e117006aa762cb485b493f505fe9e742536cea.tar.bz2 scummvm-rg350-e5e117006aa762cb485b493f505fe9e742536cea.zip |
back disable warnings into stdafx.h, vc6 is lack of warnings support
svn-id: r9337
Diffstat (limited to 'sky')
-rw-r--r-- | sky/compact.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sky/compact.cpp b/sky/compact.cpp index b50005813e..981e722d02 100644 --- a/sky/compact.cpp +++ b/sky/compact.cpp @@ -20,15 +20,7 @@ */ #include "stdafx.h" -#ifdef _MSC_VER -// disable warning "truncation of constant value". Some signed -// fields of the structs are saved as unsigned in the .h files -#pragma warning(disable : 4305) -#pragma warning(disable : 4309) -#endif - #include "sky/compact.h" - #include "sky/compacts/0compact.h" #include "sky/compacts/1compact.h" #include "sky/compacts/29comp.h" @@ -44,11 +36,6 @@ #include "sky/compacts/lincmenu.h" #include "sky/compacts/z_compac.h" -#ifdef _MSC_VER -#pragma warning(default : 4305) -#pragma warning(default : 4309) -#endif - #define COMPACT_SIZE (sizeof(compactOffsets)/sizeof(uint32)) #define EXTCOMPACT_SIZE (sizeof(extCompactOffsets)/sizeof(uint32)) #define MEGASET_SIZE (sizeof(megaSetOffsets)/sizeof(uint32)) |