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.
This commit is contained in:
Azelphur 2015-06-07 22:13:23 +01:00
parent 2f20e6da65
commit 548396b3e5
1 changed files with 1 additions and 1 deletions

View File

@ -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 "$@"