From e0213464daa1d00c8d48766ef757aadc33815a8a Mon Sep 17 00:00:00 2001 From: XargonWan Date: Sat, 28 Dec 2024 00:02:33 +0900 Subject: [PATCH] RUFFLE: added to Zenity --- tools/configurator.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tools/configurator.sh b/tools/configurator.sh index ea47b6ab..c9200ef6 100755 --- a/tools/configurator.sh +++ b/tools/configurator.sh @@ -35,6 +35,7 @@ source /app/libexec/global.sh # - PCSX2 # - PPSSPP # - Primehack +# - Ruffle # - RPCS3 # - Ryujinx # - Vita3K @@ -83,6 +84,7 @@ source /app/libexec/global.sh # - Reset PCSX2 # - Reset PPSSPP # - Reset Primehack +# - Reset Ruffle # - Reset RPCS3 # - Reset Ryujinx # - Reset Vita3k @@ -447,6 +449,7 @@ configurator_open_emulator_dialog() { "PCSX2" "Open the PS2 emulator PSXC2" "PPSSPP" "Open the PSP emulator PPSSPP" "Primehack" "Open the Metroid Prime emulator Primehack" + "Ruffle" "Open the Flash emulator Ruffle" "RPCS3" "Open the PS3 emulator RPCS3" "Ryujinx" "Open the Switch emulator Ryujinx" "Vita3K" "Open the PSVita emulator Vita3K" @@ -521,6 +524,11 @@ configurator_open_emulator_dialog() { primehack-wrapper ;; + "Ruffle" ) + log i "Configurator: \"$emulator\"" + ruffle + ;; + "RPCS3" ) log i "Configurator: \"$emulator\"" rpcs3 @@ -1133,7 +1141,7 @@ configurator_reset_dialog() { fi ;; - "Cemu" | "Citra" | "Dolphin" | "Duckstation" | "GZDoom" | "Yuzu" | "MelonDS" | "MAME" | "PCSX2" | "PPSSPP" | "Primehack" | "RPCS3" | "Ryujinx" ) + "Cemu" | "Citra" | "Dolphin" | "Duckstation" | "GZDoom" | "Yuzu" | "MelonDS" | "MAME" | "PCSX2" | "PPSSPP" | "Primehack" | "Ruffle" | "RPCS3" | "Ryujinx" ) if [[ $(configurator_reset_confirmation_dialog "$component_to_reset" "Are you sure you want to reset the $component_to_reset emulator to default settings?\n\nThis process cannot be undone.") == "true" ]]; then prepare_component "reset" "$component_to_reset" "configurator" configurator_process_complete_dialog "resetting $component_to_reset"