Check the right flag for tracing SSE2 support

This commit is contained in:
Chris Robinson 2013-05-29 21:28:27 -07:00
parent 764e3aa496
commit 9c3f1d11f0

View File

@ -136,7 +136,7 @@ void FillCPUCaps(ALuint capfilter)
#endif
TRACE("Got caps:%s%s%s%s\n", ((caps&CPU_CAP_SSE)?((capfilter&CPU_CAP_SSE)?" SSE":" (SSE)"):""),
((caps&CPU_CAP_SSE)?((capfilter&CPU_CAP_SSE2)?" SSE2":" (SSE2)"):""),
((caps&CPU_CAP_SSE2)?((capfilter&CPU_CAP_SSE2)?" SSE2":" (SSE2)"):""),
((caps&CPU_CAP_NEON)?((capfilter&CPU_CAP_NEON)?" Neon":" (Neon)"):""),
((!caps)?" -none-":""));
CPUCapFlags = caps & capfilter;