From: havoc Date: Sun, 8 May 2005 18:32:46 +0000 (+0000) Subject: S_LocalSound now uses ATTN_NONE, so menu sounds and such will no longer be centered... X-Git-Tag: xonotic-v0.1.0preview~4929 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=083b9fdf43f57fa4fd118118de78d46054a81a5f;p=xonotic%2Fdarkplaces.git S_LocalSound now uses ATTN_NONE, so menu sounds and such will no longer be centered at world origin git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5250 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/snd_main.c b/snd_main.c index 9e265328..b772db81 100644 --- a/snd_main.c +++ b/snd_main.c @@ -1055,7 +1055,7 @@ qboolean S_LocalSound (const char *sound) // Local sounds must not be freed sfx->flags |= SFXFLAG_PERMANENTLOCK; - ch_ind = S_StartSound (cl.viewentity, 0, sfx, vec3_origin, 1, 1); + ch_ind = S_StartSound (cl.viewentity, 0, sfx, vec3_origin, 1, 0); if (ch_ind < 0) return false;