Merge pull request #1616 from Sonicadvance1/asimd_is_neon

[Android] Fix NEON detection with AArch64
This commit is contained in:
Ryan Houdek 2014-11-30 15:41:28 -06:00
commit 4a687f2641
1 changed files with 1 additions and 1 deletions

View File

@ -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) 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) JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SaveScreenShot(JNIEnv *env, jobject obj)