mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
2f20e6da65
commit
548396b3e5
|
@ -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 "$@"
|
||||
|
|
Loading…
Reference in New Issue