Created
October 26, 2023 14:04
-
-
Save ginkage/75d06917a0c0f3f46ddabd8e9c9baaa0 to your computer and use it in GitHub Desktop.
RetroPie setup fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/scriptmodules/emulators/retroarch.sh b/scriptmodules/emulators/retroarch.sh | |
index 7359a0d8..fe17bde3 100644 | |
--- a/scriptmodules/emulators/retroarch.sh | |
+++ b/scriptmodules/emulators/retroarch.sh | |
@@ -53,6 +53,7 @@ function build_retroarch() { | |
isPlatform "gles32" && params+=(--enable-opengles3_2) | |
fi | |
isPlatform "rpi" && isPlatform "mesa" && params+=(--disable-videocore) | |
+ isPlatform "rk3588" && params+=(--disable-videocore) | |
# Temporarily block dispmanx support for fkms until upstream support is fixed | |
isPlatform "dispmanx" && ! isPlatform "kms" && params+=(--enable-dispmanx --disable-opengl1) | |
isPlatform "mali" && params+=(--enable-mali_fbdev) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment