mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Parens for operator priority.
This commit is contained in:
parent
f3db4e4523
commit
5c78413a45
2 changed files with 6 additions and 5 deletions
|
@ -724,6 +724,7 @@ struct bfilter_t //c++ style
|
|||
// 4=brush->owner->eclass->nShowFlags
|
||||
// 5=brush->face->texdef.flags (q2)
|
||||
// 6=brush->face->texdef.contents (q2)
|
||||
// 7=!brush->face->texdef.contents (q2)
|
||||
int mask;
|
||||
const char *string;
|
||||
bool active;
|
||||
|
|
|
@ -201,7 +201,7 @@ bool FilterBrush( brush_t *pb ){
|
|||
|
||||
|
||||
if ( g_qeglobals.d_savedinfo.exclude & EXCLUDE_DETAILS ) {
|
||||
if ( !pb->patchBrush && pb->brush_faces->texdef.contents & CONTENTS_DETAIL ) {
|
||||
if ( !pb->patchBrush && ( pb->brush_faces->texdef.contents & CONTENTS_DETAIL ) ) {
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
@ -239,16 +239,16 @@ bool FilterBrush( brush_t *pb ){
|
|||
filterbrush = true;
|
||||
break;
|
||||
}
|
||||
// quake2 - 5 == surface flags, 6 == content flags
|
||||
}
|
||||
// quake2 - 5 == surface flags, 6 == content flags, 7 == !content flags
|
||||
else if ( filters->attribute == 5 ) {
|
||||
if ( f->texdef.flags && f->texdef.flags & filters->mask ) {
|
||||
if ( f->texdef.flags && ( f->texdef.flags & filters->mask ) ) {
|
||||
filterbrush = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if ( filters->attribute == 6 ) {
|
||||
if ( f->texdef.contents && f->texdef.contents & filters->mask ) {
|
||||
if ( f->texdef.contents && ( f->texdef.contents & filters->mask ) ) {
|
||||
filterbrush = true;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue