From a20ff7cf4a7a17f86f623bc14e8e25d04488cb5f Mon Sep 17 00:00:00 2001 From: avolkov Date: Fri, 20 Jan 2006 23:34:42 +0000 Subject: [PATCH] Removed workaround for bug #166 -- MikMod should work correctly now on MacOSX with DMODE_HQMIXER git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2224 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/sound/decoders/modaud.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/sc2/src/sc2code/libs/sound/decoders/modaud.c b/sc2/src/sc2code/libs/sound/decoders/modaud.c index 5fac89d3b..dadbca0cc 100644 --- a/sc2/src/sc2code/libs/sound/decoders/modaud.c +++ b/sc2/src/sc2code/libs/sound/decoders/modaud.c @@ -153,13 +153,8 @@ moda_InitModule (int flags, const TFB_DecoderFormats* fmts) if (flags & audio_QUALITY_HIGH) { -#ifndef WORDS_BIGENDIAN md_mode = DMODE_HQMIXER|DMODE_STEREO|DMODE_16BITS|DMODE_INTERP|DMODE_SURROUND; -#else - // disable hqmixer on big endian machines (workaround for bug #166) - md_mode = DMODE_SOFT_MUSIC|DMODE_STEREO|DMODE_16BITS|DMODE_INTERP|DMODE_SURROUND; -#endif - md_mixfreq = 44100; + md_mixfreq = 44100; md_reverb = 1; } else if (flags & audio_QUALITY_LOW)