From b7a45fe4197da4df8219e276d6c18158ac03b4b3 Mon Sep 17 00:00:00 2001 From: XargonWan <6771419+XargonWan@users.noreply.github.com> Date: Sun, 4 Sep 2022 21:52:56 +0200 Subject: [PATCH] TOOLS: added missing emulators --- tools/configure-emulators.sh | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) mode change 100644 => 100755 tools/configure-emulators.sh diff --git a/tools/configure-emulators.sh b/tools/configure-emulators.sh old mode 100644 new mode 100755 index 25f5be7b..a646bf47 --- a/tools/configure-emulators.sh +++ b/tools/configure-emulators.sh @@ -7,6 +7,8 @@ then fi emulator="$(zenity --list \ +--width=600 \ +--height=350 \ --title "RetroDECK" \ --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \ --text="Which emulator do you want to configure?" \ @@ -15,8 +17,10 @@ emulator="$(zenity --list \ "RetroArch" \ "Citra" \ "Dolphin" \ +"Duckstation" \ "MelonDS" \ -"PCSX2" \ +"PCSX2-QT" \ +"PCSX2 (Legacy)" \ "PPSSPP" \ "RPCS3" \ "XEMU" \ @@ -31,12 +35,18 @@ then elif [ $emulator == "Dolphin" ] then dolphin-emu +elif [ $emulator == "Duckstation" ] +then + duckstation-qt elif [ $emulator == "MelonDS" ] then melonDS -elif [ $emulator == "PCSX2" ] +elif [ $emulator == "PCSX2 (Legacy)" ] then pcsx2 +elif [ $emulator == "pcsx2-qt" ] +then + pcsx2-qt elif [ $emulator == "PPSSPP" ] then PPSSPPSDL