mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #17358 from hrydgard/fix-xperia-play
Don't use the cpu_features library on Android arm32.
This commit is contained in:
commit
25668fe4d2
2 changed files with 4 additions and 2 deletions
|
@ -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__)
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue