From dda95cbe7461c9abdd6a91a7d717c35212aedaa6 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 11 Feb 2014 12:02:17 +0100 Subject: [PATCH] (performance.c) Drop __CELLOS_LV2__ ifdef --- performance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance.c b/performance.c index 4c645304c5..c46440892c 100644 --- a/performance.c +++ b/performance.c @@ -338,7 +338,7 @@ uint64_t rarch_get_cpu_features(void) cpu |= RETRO_SIMD_NEON; arm_enable_runfast_mode(); RARCH_LOG("[CPUID]: NEON: %u\n", !!(cpu & RETRO_SIMD_NEON)); -#elif defined(__CELLOS_LV2__) || defined(__ALTIVEC__) +#elif defined(__ALTIVEC__) cpu |= RETRO_SIMD_VMX; RARCH_LOG("[CPUID]: VMX: %u\n", !!(cpu & RETRO_SIMD_VMX)); #elif defined(XBOX360)