From 86dfaf9930247220ce1ce3b1c69b7e475e09ff3f Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 3 May 2018 17:41:39 +0300 Subject: [PATCH] Fix too loud entities in multiplayer --- engine/client/s_main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/engine/client/s_main.c b/engine/client/s_main.c index 2942f5e2..7ac6dadf 100644 --- a/engine/client/s_main.c +++ b/engine/client/s_main.c @@ -817,6 +817,8 @@ void SND_Spatialize( channel_t *ch ) dist = VectorNormalizeLength( source_vec ); dot = DotProduct( s_listener.right, source_vec ); + // a1ba: disabled for better multiplayer +#if 0 // for sounds with a radius, spatialize left/right evenly within the radius if( ch->radius > 0 && dist < ch->radius ) { @@ -824,13 +826,14 @@ void SND_Spatialize( channel_t *ch ) float blend = dist - interval; if( blend < 0 ) blend = 0; - blend /= interval; + blend /= interval; // blend is 0.0 - 1.0, from 50% radius -> 100% radius // at radius * 0.5, dot is 0 (ie: sound centered left/right) // at radius dot == dot dot *= blend; } +#endif if( s_cull->value ) {