snd_mikmod.c: we don't truly need the high-quality mixer. (and it's slow too...)

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1334 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2016-08-08 04:04:14 +00:00
parent b683cd2fcd
commit 56c2e44b87

View file

@ -90,7 +90,6 @@ static qboolean S_MIKMOD_CodecInitialize (void)
if (shm->channels == 2)
md_mode |= DMODE_STEREO;
md_mode |= DMODE_SOFT_MUSIC; /* this is a software-only mixer */
md_mode |= DMODE_HQMIXER; /* high-quality mixer is OK */
/* md_mixfreq is UWORD, so something like 96000 isn't OK */
md_mixfreq = (shm->speed < 65536)? shm->speed : 48000;