mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
be a little more verbose with the "Bad surface extents" error.
This commit is contained in:
parent
357225c923
commit
1337b8bd3d
1 changed files with 1 additions and 1 deletions
|
@ -467,7 +467,7 @@ CalcSurfaceExtents (msurface_t *s)
|
|||
s->texturemins[i] = bmins[i] * 16;
|
||||
s->extents[i] = (bmaxs[i] - bmins[i]) * 16;
|
||||
if (!(tex->flags & TEX_SPECIAL) && s->extents[i] > 512 /* 256 */ )
|
||||
Sys_Error ("Bad surface extents");
|
||||
Sys_Error ("Bad surface extents: %x %d", tex->flags, s->extents[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue