stupid stupid bug.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4084 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2012-07-20 18:54:52 +00:00
parent 41fa068b72
commit 60d490fce6
1 changed files with 4 additions and 4 deletions

View File

@ -2217,13 +2217,13 @@ void Terr_ParseEntityLump(char *data, float *scale, int *minx, int *maxx, int *m
if (!strcmp("segmentsize", key)) if (!strcmp("segmentsize", key))
*scale = atof(com_token); *scale = atof(com_token);
else if (!strcmp("minxsegment", key)) else if (!strcmp("minxsegment", key))
*minx = atoi(com_token) + CHUNKBIAS; *minx = atoi(com_token);
else if (!strcmp("minysegment", key)) else if (!strcmp("minysegment", key))
*miny = atoi(com_token) + CHUNKBIAS; *miny = atoi(com_token);
else if (!strcmp("maxxsegment", key)) else if (!strcmp("maxxsegment", key))
*maxx = atoi(com_token) + CHUNKBIAS; *maxx = atoi(com_token);
else if (!strcmp("maxysegment", key)) else if (!strcmp("maxysegment", key))
*maxy = atoi(com_token) + CHUNKBIAS; *maxy = atoi(com_token);
} }
} }