mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 07:22:28 +00:00
Merge branch 'console-silly-characters' into 'next'
Get rid of some silly behavior with certain characters in console See merge request STJr/SRB2!1110
This commit is contained in:
commit
dbc32ea9ea
1 changed files with 0 additions and 11 deletions
|
@ -2370,15 +2370,6 @@ skipwhite:
|
|||
}
|
||||
}
|
||||
|
||||
// parse single characters
|
||||
if (c == '{' || c == '}' || c == ')' || c == '(' || c == '\'')
|
||||
{
|
||||
com_token[len] = c;
|
||||
len++;
|
||||
com_token[len] = 0;
|
||||
return data + 1;
|
||||
}
|
||||
|
||||
// parse a regular word
|
||||
do
|
||||
{
|
||||
|
@ -2398,8 +2389,6 @@ skipwhite:
|
|||
len++;
|
||||
c = *data;
|
||||
}
|
||||
if (c == '{' || c == '}' || c == ')'|| c == '(' || c == '\'')
|
||||
break;
|
||||
} while (c > 32);
|
||||
|
||||
com_token[len] = 0;
|
||||
|
|
Loading…
Reference in a new issue