mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
don't subdivide hint or skip brushes
This commit is contained in:
parent
6cc7d43b53
commit
3c58b712d9
1 changed files with 3 additions and 0 deletions
|
@ -60,6 +60,9 @@ SubdivideFace (face_t *f, face_t **prevptr)
|
|||
texinfo_t *tex;
|
||||
vec_t v;
|
||||
|
||||
if (f->texturenum < 0) // don't subdivide HINT or SKIP
|
||||
return;
|
||||
|
||||
// special (non-surface cached) faces don't need subdivision
|
||||
tex = &bsp->texinfo[f->texturenum];
|
||||
|
||||
|
|
Loading…
Reference in a new issue