tabs in configs are now handled more correctly.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2460 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2007-01-08 03:11:36 +00:00
parent 5339cd92e7
commit 359e46bfff
1 changed files with 1 additions and 1 deletions

View File

@ -1049,7 +1049,7 @@ void Cmd_ShiftArgs (int ammount, qboolean expandstring)
{
cmd_args = COM_StringParse(cmd_args, expandstring, false);
if (cmd_args)
while(*cmd_args == ' ')
while(*cmd_args == ' ' || *cmd_args == '\t')
cmd_args++;
}
}