git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3220 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2001-11-30 16:50:37 +00:00
parent f7ae53c46a
commit d38ab4b67a
1 changed files with 2 additions and 2 deletions

View File

@ -557,14 +557,14 @@ void MP3_Init(){
else
#endif
#ifdef ARCH_X86
if (gCpuCaps.cpuType >= CPUTYPE_I386)
if (gCpuCaps.cpuType == CPUTYPE_I586)
{
synth_func=synth_1to1_pent;
}
else
#endif
{
synth_func = NULL;
synth_func = NULL; /* use default c version */
}
#endif
}