mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-21 21:45:39 +00:00
Yuzu: fixed cli call
This commit is contained in:
parent
c0c1931312
commit
077d9bc813
|
@ -1126,7 +1126,7 @@
|
|||
<fullname>Nintendo Switch</fullname>
|
||||
<path>%ROMPATH%/switch</path>
|
||||
<extension>.nca .NCA .nro .NRO .nso .NSO .nsp .NSP .xci .XCI .7z .7Z .zip .ZIP</extension>
|
||||
<command label="Yuzu (Standalone)">%EMULATOR_YUZU% %ROM%</command>
|
||||
<command label="Yuzu (Standalone)">%EMULATOR_YUZU% -f -g %ROM%</command>
|
||||
<platform>switch</platform>
|
||||
<theme>switch</theme>
|
||||
</system>
|
||||
|
|
5
tools/start-yuzu.sh
Normal file
5
tools/start-yuzu.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
kdialog --title "RetroDECK" --warningyesno "Doing some changes in the Yuzu configuration may create serious issues, please continue only if you know what you're doing.\n\nDo you want to continue?"
|
||||
if [ $? == 0 ]; then
|
||||
yuzu
|
Loading…
Reference in a new issue