diff options
author | Chris Robinson <[email protected]> | 2013-05-29 21:28:27 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-05-29 21:28:27 -0700 |
commit | 9c3f1d11f0dd28feb43fb903bce7cf2362409abb (patch) | |
tree | af6be315f6696c24c4fc11fc574932fe1e942118 /Alc/helpers.c | |
parent | 764e3aa4963c4fbfb08b313d93f6246b5d79b1b9 (diff) |
Check the right flag for tracing SSE2 support
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r-- | Alc/helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |