mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 12:01:10 +00:00
no, we do NOT want to ignore caulk
This commit is contained in:
parent
3081387877
commit
d590a482aa
2 changed files with 3 additions and 1 deletions
|
@ -2824,6 +2824,8 @@ void SetupBrushesFlags( unsigned int mask_any, unsigned int test_any, unsigned i
|
||||||
compileFlags |= si->compileFlags;
|
compileFlags |= si->compileFlags;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Sys_FPrintf( SYS_VRB, "flags: %d (all: %d)\n", compileFlags, allCompileFlags );
|
||||||
|
|
||||||
/* determine if this brush is opaque to light */
|
/* determine if this brush is opaque to light */
|
||||||
if( (compileFlags & mask_any) == test_any && (allCompileFlags & mask_all) == test_all )
|
if( (compileFlags & mask_any) == test_any && (allCompileFlags & mask_all) == test_all )
|
||||||
{
|
{
|
||||||
|
|
|
@ -389,7 +389,7 @@ determines solid non-sky brushes in the world
|
||||||
|
|
||||||
void MiniMapSetupBrushes( void )
|
void MiniMapSetupBrushes( void )
|
||||||
{
|
{
|
||||||
SetupBrushesFlags(C_SOLID | C_SKY, C_SOLID, C_NODRAW, 0);
|
SetupBrushesFlags(C_SOLID | C_SKY, C_SOLID, 0, 0);
|
||||||
// at least one must be solid
|
// at least one must be solid
|
||||||
// none may be sky
|
// none may be sky
|
||||||
// not all may be nodraw
|
// not all may be nodraw
|
||||||
|
|
Loading…
Reference in a new issue