Make it so we're explicit about launching with -quake on select titles
This commit is contained in:
parent
9f2900ec97
commit
cc65ec3898
1 changed files with 4 additions and 4 deletions
|
@ -20,13 +20,13 @@ if [ "$COMMANDTYPE" == "wait-before-run" ]; then
|
||||||
GAMEARGS=${PARMARR[@]:2:$ARGLEN-1}
|
GAMEARGS=${PARMARR[@]:2:$ARGLEN-1}
|
||||||
|
|
||||||
if [ "$GAMEBINARY" == "Winquake.exe" ]; then
|
if [ "$GAMEBINARY" == "Winquake.exe" ]; then
|
||||||
fteqw -basedir "$GAMEDIR" $GAMEARGS
|
fteqw -basedir "$GAMEDIR" -quake $GAMEARGS
|
||||||
elif [ "$GAMEBINARY" == "qwcl.exe" ]; then
|
elif [ "$GAMEBINARY" == "qwcl.exe" ]; then
|
||||||
fteqw -basedir "$GAMEDIR" -game qw $GAMEARGS
|
fteqw -basedir "$GAMEDIR" -quake -game qw $GAMEARGS
|
||||||
elif [ "$GAMEBINARY" == "Glquake.exe" ]; then
|
elif [ "$GAMEBINARY" == "Glquake.exe" ]; then
|
||||||
fteqw -basedir "$GAMEDIR" $GAMEARGS
|
fteqw -basedir "$GAMEDIR" -quake $GAMEARGS
|
||||||
elif [ "$GAMEBINARY" == "glqwcl.exe" ]; then
|
elif [ "$GAMEBINARY" == "glqwcl.exe" ]; then
|
||||||
fteqw -basedir "$GAMEDIR" -game qw $GAMEARGS
|
fteqw -basedir "$GAMEDIR" -quake -game qw $GAMEARGS
|
||||||
elif [ "$GAMEBINARY" == "quake3.exe" ]; then
|
elif [ "$GAMEBINARY" == "quake3.exe" ]; then
|
||||||
fteqw -basedir "$GAMEDIR" -quake3 $GAMEARGS
|
fteqw -basedir "$GAMEDIR" -quake3 $GAMEARGS
|
||||||
elif [ "$GAMEBINARY" == "quake2.exe" ]; then
|
elif [ "$GAMEBINARY" == "quake2.exe" ]; then
|
||||||
|
|
Loading…
Reference in a new issue