From 548396b3e515d37da194410a413900f8c7b4292b Mon Sep 17 00:00:00 2001 From: Azelphur Date: Sun, 7 Jun 2015 22:13:23 +0100 Subject: [PATCH] Fix PCSX2-linux.sh argument passing $@ should be wrapped in quotes, otherwise arguments with spaces do not work eg currently you cannot run any game that has spaces in the filename with this script, this patch fixes that. --- bin/PCSX2-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/PCSX2-linux.sh b/bin/PCSX2-linux.sh index c01b2667f9..49764147cb 100755 --- a/bin/PCSX2-linux.sh +++ b/bin/PCSX2-linux.sh @@ -70,4 +70,4 @@ then fi # And finally launch me -LD_LIBRARY_PATH="$MY_LD_LIBRARY_PATH" __GL_THREADED_OPTIMIZATIONS=1 $DIR/PCSX2 $@ +LD_LIBRARY_PATH="$MY_LD_LIBRARY_PATH" __GL_THREADED_OPTIMIZATIONS=1 $DIR/PCSX2 "$@"