From 45bb5ac43bb1b6aad6e0b553d7f968a303eb9522 Mon Sep 17 00:00:00 2001 From: icenine451 Date: Tue, 12 Mar 2024 10:13:41 -0400 Subject: [PATCH] Only check for Desktop Mode on Steam Deck platform --- retrodeck.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/retrodeck.sh b/retrodeck.sh index b4ec2f19..834ee224 100644 --- a/retrodeck.sh +++ b/retrodeck.sh @@ -166,8 +166,9 @@ if [[ $multi_user_mode == "true" ]]; then fi # Run optional startup checks - -desktop_mode_warning +if [[ $(check_is_steam_deck) == "true" ]]; then # Only warn about Desktop Mode on Steam Deck, ignore for other platforms + desktop_mode_warning +fi low_space_warning # Check if there is a new version of RetroDECK available, if update_check=true in retrodeck.cfg and there is network connectivity available.