Skip to content

Commit f271ce9

Browse files
authored
Merge pull request #3560 from hissingshark/master
Fix PPSSPP build. The mali and vero4k flags are not mutually exclusive.
2 parents 57d9a3a + 52a8762 commit f271ce9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scriptmodules/emulators/ppsspp.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,8 @@ function build_ppsspp() {
141141
params+=(-DCMAKE_CXX_FLAGS="${CXXFLAGS/-DGL_GLEXT_PROTOTYPES/}")
142142
elif isPlatform "tinker"; then
143143
params+=(-DCMAKE_TOOLCHAIN_FILE="$md_data/tinker.armv7.cmake")
144-
elif isPlatform "vero4k"; then
145-
params+=(-DCMAKE_TOOLCHAIN_FILE="cmake/Toolchains/vero4k.armv8.cmake")
146144
fi
145+
isPlatform "vero4k" && params+=(-DCMAKE_TOOLCHAIN_FILE="cmake/Toolchains/vero4k.armv8.cmake")
147146
if isPlatform "arm" && ! isPlatform "x11"; then
148147
params+=(-DARM_NO_VULKAN=ON)
149148
fi

0 commit comments

Comments
 (0)