mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-13 07:47:45 +00:00
fix for my own mistake.. yay
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1497 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
34b6814743
commit
9ca5cce92a
1 changed files with 2 additions and 2 deletions
|
@ -3370,7 +3370,7 @@ void CL_PrintStandardMessage(char *msg)
|
||||||
// name parsing rules
|
// name parsing rules
|
||||||
if (v != begin && *(v-1) != ' ') // must be space before name
|
if (v != begin && *(v-1) != ' ') // must be space before name
|
||||||
{
|
{
|
||||||
v = strstr(NULL, name);
|
v = strstr(v+len, name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3387,7 +3387,7 @@ void CL_PrintStandardMessage(char *msg)
|
||||||
|
|
||||||
if (sizeof(acceptedchars) == i)
|
if (sizeof(acceptedchars) == i)
|
||||||
{
|
{
|
||||||
v = strstr(NULL, name);
|
v = strstr(v+len, name);
|
||||||
continue; // no accepted char found
|
continue; // no accepted char found
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue