engine: client: avoid unneeded comparisons in CL_UpdateFlashlight

This commit is contained in:
Alibek Omarov 2023-10-09 03:20:43 +03:00
parent 962f88d31b
commit e95139af94
1 changed files with 1 additions and 3 deletions

View File

@ -2679,9 +2679,7 @@ void CL_UpdateFlashlight( cl_entity_t *ent )
falloff *= falloff;
// apply brigthness to dlight
dl->color.r = bound( 0, falloff * 255, 255 );
dl->color.g = bound( 0, falloff * 255, 255 );
dl->color.b = bound( 0, falloff * 255, 255 );
dl->color.r = dl->color.g = dl->color.b = bound( 0, falloff * 255, 255 );
dl->die = cl.time + 0.01f; // die on next frame
dl->radius = 80;
}