RetroDECK/tools/start-ppsspp.sh
2022-05-02 22:01:27 +09:00

7 lines
249 B
Bash

#!/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