diff --git a/performance.c b/performance.c index 5c8c4e1760..b557c22e21 100644 --- a/performance.c +++ b/performance.c @@ -224,6 +224,9 @@ void rarch_get_cpu_features(struct rarch_cpu_features *cpu) if (cpu_flags & ANDROID_CPU_ARM_FEATURE_NEON) cpu->simd |= RARCH_SIMD_NEON; + RARCH_LOG("[CPUID]: NEON: %u\n", !!(cpu->simd & RARCH_SIMD_NEON)); +#elif defined(__BLACKBERRY_QNX__) + cpu->simd |= RARCH_SIMD_NEON; RARCH_LOG("[CPUID]: NEON: %u\n", !!(cpu->simd & RARCH_SIMD_NEON)); #elif defined(__CELLOS_LV2__) cpu->simd |= RARCH_SIMD_VMX; diff --git a/playbook/.cproject b/playbook/.cproject index 3d88437cb5..570b741058 100644 --- a/playbook/.cproject +++ b/playbook/.cproject @@ -30,6 +30,8 @@