Fix too loud entities in multiplayer
This commit is contained in:
parent
7d37ff33aa
commit
86dfaf9930
1 changed files with 4 additions and 1 deletions
|
@ -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 )
|
||||
{
|
||||
|
@ -831,6 +833,7 @@ void SND_Spatialize( channel_t *ch )
|
|||
// at radius dot == dot
|
||||
dot *= blend;
|
||||
}
|
||||
#endif
|
||||
|
||||
if( s_cull->value )
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue