mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-24 23:15:39 +00:00
16 lines
402 B
Bash
16 lines
402 B
Bash
#!/bin/sh
|
|||
|
|||
source /app/libexec/global.sh
|
|||
|
|||
create_dir "$saves_folder/ruffle"
|
|||
|
|||
static_invoke="--config /var/data/ruffle \
|
|||
--save-directory "$saves_folder/ruffle" \
|
|||
--fullscreen"
|
|||
|
|||
#Check if Steam Deck in Desktop Mode
|
|||
if [[ $(check_desktop_mode) == "true" ]]; then
|
|||
ruffle --graphics vulkan $static_invoke "$@"
|
|||
else
|
|||
ruffle --graphics gl --no-gui $static_invoke "$@"
|
|||
fi
|