From 9c3f1d11f0dd28feb43fb903bce7cf2362409abb Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 29 May 2013 21:28:27 -0700 Subject: Check the right flag for tracing SSE2 support --- Alc/helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alc/helpers.c b/Alc/helpers.c index 25f85370..b9def782 100644 --- a/Alc/helpers.c +++ b/Alc/helpers.c @@ -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; -- cgit v1.2.3