Skip to content

Commit

Permalink
Don't use the cpu_features library on Android arm32.
Browse files Browse the repository at this point in the history
Unbreaks Xperia Play, yay.

Also bumps the compile tools version in the gradle, unrelated but
doesn't hurt.
  • Loading branch information
hrydgard committed Apr 29, 2023
1 parent 91be4cf commit e0a67c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Common/ArmCPUDetect.cpp
Expand Up @@ -29,7 +29,7 @@
#if PPSSPP_ARCH(ARM)
#include "ext/cpu_features/include/cpuinfo_arm.h"

#if defined(CPU_FEATURES_OS_LINUX) || defined(CPU_FEATURES_OS_ANDROID)
#if defined(CPU_FEATURES_OS_LINUX)
#define USE_CPU_FEATURES 1
#endif
#elif PPSSPP_ARCH(ARM64) && defined(__aarch64__)
Expand Down
4 changes: 3 additions & 1 deletion android/build.gradle
Expand Up @@ -44,9 +44,11 @@ android {
}
}
}
compileSdkVersion 32

compileSdkVersion 33
ndkVersion "21.4.7075529"


defaultConfig {
applicationId 'org.ppsspp.ppsspp'
if (androidGitVersion.name() != "unknown" && androidGitVersion.code() >= 14000000) {
Expand Down

0 comments on commit e0a67c7

Please sign in to comment.