mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-01-20 15:31:02 +00:00
Hopefully fixes the recent +gamedir failures.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3208 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
d010181ff7
commit
f3970ede24
1 changed files with 1 additions and 1 deletions
|
@ -1659,7 +1659,7 @@ void COM_Gamedir (const char *dir)
|
|||
{
|
||||
if (*(p+plen-dlen-1) == '/')
|
||||
{
|
||||
if (strcmp(p+plen-dlen, dir))
|
||||
if (!strcmp(p+plen-dlen, dir))
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue