mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 22:15:39 +00:00
7 lines
248 B
Bash
7 lines
248 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
|
||
|
pcsx2
|
||
|
fi
|