Add Ryujinx Configurator entries

This commit is contained in:
icenine451 2023-09-27 09:13:50 -04:00
parent e08fb8850e
commit e20d0acfa9
4 changed files with 12 additions and 5 deletions

View file

@ -12,5 +12,6 @@ ppsspp^PPSSPP (Sony PSP Standalone Emulator)
primehack^Primehack (Metroid Prime Standalone Emulator) primehack^Primehack (Metroid Prime Standalone Emulator)
psx_ra^Sony Playstation (RetroArch Core) psx_ra^Sony Playstation (RetroArch Core)
retroarch^RetroArch (Multi-emulator Frontend) retroarch^RetroArch (Multi-emulator Frontend)
ryujinx^Ryujinx (Nintendo Switch Standalone Emulator)
snes^Nintendo Super Nintendo snes^Nintendo Super Nintendo
yuzu^Yuzu (Nintendo Switch Standalone Emulator) yuzu^Yuzu (Nintendo Switch Standalone Emulator)

@ -1 +1 @@
Subproject commit 9dc439300e92338d5b2bc3fc680eedd4fe1d3b0c Subproject commit 0b1cfb79e591e10488a3262d6b38db843c39a409

@ -1 +1 @@
Subproject commit 2a35fe7d41b991a59992a55f09d4cdd69fdf983d Subproject commit a2441b964afefd8cd1cebcdf562c7878670daf42

View file

@ -34,6 +34,7 @@ source /app/libexec/global.sh
# - PPSSPP # - PPSSPP
# - Primehack # - Primehack
# - RPCS3 # - RPCS3
# - Ryujinx
# - XEMU # - XEMU
# - Yuzu # - Yuzu
# - Tools # - Tools
@ -74,6 +75,7 @@ source /app/libexec/global.sh
# - Reset PPSSPP # - Reset PPSSPP
# - Reset Primehack # - Reset Primehack
# - Reset RPCS3 # - Reset RPCS3
# - Reset Ryujinx
# - Reset XEMU # - Reset XEMU
# - Reset Yuzu # - Reset Yuzu
# - Reset All Emulators # - Reset All Emulators
@ -431,10 +433,9 @@ configurator_open_emulator_dialog() {
"PPSSPP" "Open the PSP emulator PPSSPP" \ "PPSSPP" "Open the PSP emulator PPSSPP" \
"Primehack" "Open the Metroid Prime emulator Primehack" \ "Primehack" "Open the Metroid Prime emulator Primehack" \
"RPCS3" "Open the PS3 emulator RPCS3" \ "RPCS3" "Open the PS3 emulator RPCS3" \
"Ryujinx" "Open the Switch emulator Ryujinx" \
"XEMU" "Open the Xbox emulator XEMU" \ "XEMU" "Open the Xbox emulator XEMU" \
"Yuzu" "Open the Switch emulator Yuzu" \ "Yuzu" "Open the Switch emulator Yuzu")
"Ryujinx" "Open the Switch emulator Ryujinx"
)
case $emulator in case $emulator in
@ -478,6 +479,10 @@ configurator_open_emulator_dialog() {
rpcs3 rpcs3
;; ;;
"Ryujinx" )
ryujinx-wrapper
;;
"XEMU" ) "XEMU" )
xemu xemu
;; ;;
@ -979,6 +984,7 @@ configurator_reset_dialog() {
"PPSSPP" "Reset the PSP emulator PPSSPP to default settings" \ "PPSSPP" "Reset the PSP emulator PPSSPP to default settings" \
"Primehack" "Reset the Metroid Prime emulator Primehack to default settings" \ "Primehack" "Reset the Metroid Prime emulator Primehack to default settings" \
"RPCS3" "Reset the PS3 emulator RPCS3 to default settings" \ "RPCS3" "Reset the PS3 emulator RPCS3 to default settings" \
"Ryujinx" "Reset the Switch emulator Ryujinx to default settings" \
"XEMU" "Reset the XBOX emulator XEMU to default settings" \ "XEMU" "Reset the XBOX emulator XEMU to default settings" \
"Yuzu" "Reset the Switch emulator Yuzu to default settings" ) "Yuzu" "Reset the Switch emulator Yuzu to default settings" )