diff options
author | Chris Robinson <[email protected]> | 2012-08-15 01:29:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-15 01:29:19 -0700 |
commit | 2e18baa3c8316a3e94f7b85293172b0e377db939 (patch) | |
tree | 6949980f9687519f046a0a04e501c7836f4cfd45 /OpenAL32 | |
parent | c9e87a19a9b7ca3d82da9cba7b4064af23899149 (diff) |
Don't bother handling MMX since we don't use it
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index f05d7316..5665a458 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -765,11 +765,8 @@ extern ALint RTPrioLevel; extern ALuint CPUCapFlags; enum { - CPU_CAP_MMX = 1<<0, - CPU_CAP_SSE = 1<<1, - CPU_CAP_NEON = 1<<3, - - CPU_CAP_ALL = CPU_CAP_MMX|CPU_CAP_SSE|CPU_CAP_NEON + CPU_CAP_SSE = 1<<0, + CPU_CAP_NEON = 1<<1, }; void FillCPUCaps(ALuint capfilter); |