mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Make a block of code a little easier to read.
This commit is contained in:
parent
a5c96cb825
commit
17e5813a51
1 changed files with 2 additions and 4 deletions
|
@ -359,10 +359,8 @@ CSGFaces (brushset_t *bs)
|
|||
}
|
||||
|
||||
// all of the faces left in outside are real surface faces
|
||||
if (b1->contents != CONTENTS_SOLID)
|
||||
SaveOutside (true); // mirror faces for inside view
|
||||
else
|
||||
SaveOutside (false);
|
||||
// if the brush is not solid, mirror the faces for the inside view
|
||||
SaveOutside (b1->contents != CONTENTS_SOLID);
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
|
Loading…
Reference in a new issue