mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2024-11-27 14:22:08 +00:00
Fixed clang-found semantic error in c_te_decal.cpp
This commit is contained in:
parent
28abc2120b
commit
0b40f4959c
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ void TE_Decal( IRecipientFilter& filter, float delay,
|
|||
// Only decal the world + brush models
|
||||
// Here we deal with decals on entities.
|
||||
C_BaseEntity* ent;
|
||||
if ( ( ent = cl_entitylist->GetEnt( entity ) ) == false )
|
||||
if ( ( ent = cl_entitylist->GetEnt( entity ) ) == NULL )
|
||||
return;
|
||||
|
||||
ent->AddDecal( *start, *pos, *pos, hitbox,
|
||||
|
|
Loading…
Reference in a new issue