fix asimd detection

This commit is contained in:
Henri Gomez 2016-10-18 17:18:33 +02:00
parent eaed1c96be
commit a2274d45be

View File

@ -704,7 +704,7 @@ uint64_t cpu_features_get(void)
if (check_arm_cpu_feature("vfpv4"))
cpu |= RETRO_SIMD_VFPV4;
if (check_arm_cpu_feature("asymd"))
if (check_arm_cpu_feature("asimd"))
{
cpu |= RETRO_SIMD_ASIMD;
#ifdef __ARM_NEON__