Skip to content

Commit 72c98d8

Browse files
authored
Merge pull request #1176 from Hairo/Development
2 parents 5a4fc8b + 3ad6999 commit 72c98d8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

App/RetroArch/launch.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ cd $RA_DIR/
1212
RA_PARAMS="-v"
1313
if [ "$PLATFORM" = "Pixel2" ]; then
1414
CURRENT_CFG=$(get_ra_cfg_location)
15-
RA_PARAMS="${RA_PARAMS} --config $CURRENT_CFG"
15+
RA_PARAMS="${RA_PARAMS} --config ${CURRENT_CFG}"
1616
fi
1717

18-
HOME="$RA_DIR/" "$RA_DIR/$RA_BIN" "$RA_PARAMS"
18+
HOME="$RA_DIR/" "$RA_DIR/$RA_BIN" $RA_PARAMS
1919

2020
backup_ra_config 2>/dev/null
2121

spruce/scripts/emu/lib/ra_functions.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,13 @@ run_retroarch() {
135135

136136
RA_PARAMS="-v"
137137
if [ "$PLATFORM" = "Pixel2" ]; then
138-
RA_PARAMS="${RA_PARAMS} --config $CURRENT_CFG"
138+
RA_PARAMS="${RA_PARAMS} --config ${CURRENT_CFG}"
139139
fi
140140

141141
if flag_check "developer_mode"; then
142-
HOME="$RA_DIR/" "$RA_DIR/$RA_BIN" "$RA_PARAMS" --log-file /mnt/SDCARD/Saves/spruce/retroarch.log -L "$CORE_PATH" "$ROM_FILE"
142+
HOME="$RA_DIR/" "$RA_DIR/$RA_BIN" $RA_PARAMS --log-file /mnt/SDCARD/Saves/spruce/retroarch.log -L "$CORE_PATH" "$ROM_FILE"
143143
else
144-
HOME="$RA_DIR/" "$RA_DIR/$RA_BIN" "$RA_PARAMS" -L "$CORE_PATH" "$ROM_FILE"
144+
HOME="$RA_DIR/" "$RA_DIR/$RA_BIN" $RA_PARAMS -L "$CORE_PATH" "$ROM_FILE"
145145
fi
146146

147147

0 commit comments

Comments
 (0)