Skip to content

Commit 1c5aa07

Browse files
committed
Ruffle: removed dual --fullscreen command causing crash, bin folder correct target
1 parent ef3c601 commit 1c5aa07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ruffle/component_launcher.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ component_path="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd)"
99
log i "RetroDECK is now launching $component_name"
1010
log i "Ruffle is running: $arg"
1111

12-
static_invoke="--config /var/data/ruffle --save-directory $saves_path/ruffle --fullscreen"
12+
static_invoke="--config /var/data/ruffle --save-directory $saves_path/ruffle"
1313

1414
#Check if Steam Deck in Desktop Mode
1515
if [[ $(check_desktop_mode) == "true" ]]; then
1616
log d "Running Ruffle in Desktop Mode"
1717
log d "ruffle --graphics vulkan $static_invoke $@"
18-
exec "$component_path/ruffle" --graphics vulkan $static_invoke "$@"
18+
exec "$component_path/bin/ruffle" --graphics vulkan $static_invoke "$@"
1919
else
2020
log d "Running Ruffle in Gaming Mode"
2121
log d "ruffle --graphics gl --no-gui $static_invoke $@"
22-
exec "$component_path/ruffle" --graphics gl --no-gui $static_invoke "$@"
22+
exec "$component_path/bin/ruffle" --graphics gl --no-gui $static_invoke "$@"
2323
fi

0 commit comments

Comments
 (0)