diff --git a/tools-gamelist.xml b/tools-gamelist.xml index 346d6643..305f6631 100644 --- a/tools-gamelist.xml +++ b/tools-gamelist.xml @@ -16,28 +16,35 @@ ./start-pcsx2.sh - Start PCSX2 + Start PCSX2 (Standalone) Start PCSX2 to manually tweak your settings. true true + + ./start-ppsspp.sh + Start PPSSPP (Standalone) + Start PPSSPP to manually tweak your settings. + true + true + ./start-dolphin.sh - Start Dolphin + Start Dolphin (Standalone) Start Dolphin to manually tweak your settings. true true ./start-melonds.sh - Start MelonDS + Start MelonDS (Standalone) Start MelonDS to manually tweak your settings. true true ./start-citra.sh - Start CITRA + Start CITRA (Standalone) Start CITRA to manually tweak your settings. true true diff --git a/tools/start-ppsspp.sh b/tools/start-ppsspp.sh new file mode 100644 index 00000000..8763860c --- /dev/null +++ b/tools/start-ppsspp.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +kdialog --title "RetroDECK" --warningyesno "Doing some changes in the emulator's configuration may create serious issues, please continue only if you know what you're doing.\n\nDo you want to continue?" +if [ $? == 0 ] +then + ppsspp +fi \ No newline at end of file