mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-17 01:11:18 +00:00
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:
parent
5339cd92e7
commit
359e46bfff
1 changed files with 1 additions and 1 deletions
|
@ -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++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue