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 /sound | |
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 'sound')
-rw-r--r-- | sound/audiostream.cpp | 5 | ||||
-rw-r--r-- | sound/rate.cpp | 6 |
2 files changed, 0 insertions, 11 deletions
diff --git a/sound/audiostream.cpp b/sound/audiostream.cpp index c6f3ae2524..7ed8ff2437 100644 --- a/sound/audiostream.cpp +++ b/sound/audiostream.cpp @@ -26,11 +26,6 @@ #include "common/file.h" #include "common/util.h" -#ifdef _MSC_VER -// Disable "unknown pragma" warning in MSVC 6 -#pragma warning(disable : 4068) -#endif - template<bool is16Bit, bool isUnsigned> static inline int16 readSample(const byte *ptr) { uint16 sample = is16Bit ? READ_BE_UINT16(ptr) : (*ptr << 8); diff --git a/sound/rate.cpp b/sound/rate.cpp index 9b79e824ba..23752dcbb8 100644 --- a/sound/rate.cpp +++ b/sound/rate.cpp @@ -176,12 +176,6 @@ the_end: return (ST_SUCCESS); } - -#ifndef _MSC_VER -#pragma mark - -#endif - - LinearRateConverter::LinearRateConverter(st_rate_t inrate, st_rate_t outrate) { st_rate_start(&effp, inrate, outrate); } |