From c5de74558008f1b33c6f3a73f306d5d0950aa10d Mon Sep 17 00:00:00 2001 From: Jamieson Christian Date: Thu, 31 Jul 2003 06:47:05 +0000 Subject: Disabled unknown pragma warning in MSVC-6. svn-id: r9320 --- sound/audiostream.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sound') diff --git a/sound/audiostream.cpp b/sound/audiostream.cpp index 0d769e3df7..c6f3ae2524 100644 --- a/sound/audiostream.cpp +++ b/sound/audiostream.cpp @@ -26,6 +26,10 @@ #include "common/file.h" #include "common/util.h" +#ifdef _MSC_VER +// Disable "unknown pragma" warning in MSVC 6 +#pragma warning(disable : 4068) +#endif template static inline int16 readSample(const byte *ptr) { -- cgit v1.2.3