From 50582b1d74801b89aa7360836199d82fc88ea791 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sun, 30 Nov 2014 01:29:41 -0600 Subject: [PATCH] [Android] Fix NEON detection with AArch64 On AArch64 asimd is the new name for NEON. This fixes a message on application start in Android about the device not supporting NEON. If it's AArch64 then it supports NEON! --- Source/Core/DolphinWX/MainAndroid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/MainAndroid.cpp b/Source/Core/DolphinWX/MainAndroid.cpp index 273b0c4664..47a03d82f9 100644 --- a/Source/Core/DolphinWX/MainAndroid.cpp +++ b/Source/Core/DolphinWX/MainAndroid.cpp @@ -255,7 +255,7 @@ JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetVersio JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SupportsNEON(JNIEnv *env, jobject obj) { - return cpu_info.bNEON; + return cpu_info.bNEON || cpu_info.bASIMD; } JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SaveScreenShot(JNIEnv *env, jobject obj)