diff --git a/ref_vk/vk_light.c b/ref_vk/vk_light.c index 092f1e1b..a5ae835f 100644 --- a/ref_vk/vk_light.c +++ b/ref_vk/vk_light.c @@ -883,8 +883,8 @@ static void processStaticPointLights( void ) { for (int i = 0; i < g_map_entities.num_lights; ++i) { const vk_light_entity_t *le = g_map_entities.lights + i; const float default_radius = 2.f; // FIXME tune - const float hack_attenuation = 1.f; // FIXME tune - const float hack_attenuation_spot = 1.f; // FIXME tune + const float hack_attenuation = .1f; // FIXME tune + const float hack_attenuation_spot = .1f; // FIXME tune const float radius = le->radius > 0.f ? le->radius : default_radius; int index;