From 631bea6a9805bbebed4e24c31d24787d5b9efe6d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 1 Oct 2022 16:09:53 +0200 Subject: [PATCH] - v3df_follow cannot be disabled. This caused the sound field to deteriorate. Fortunately the flag was already ignored for player sounds so hopefully it's ok like this. --- source/games/sw/src/sounds.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/games/sw/src/sounds.cpp b/source/games/sw/src/sounds.cpp index 502bdfc33..f893c14f4 100644 --- a/source/games/sw/src/sounds.cpp +++ b/source/games/sw/src/sounds.cpp @@ -571,7 +571,6 @@ void SWSoundEngine::CalcPosVel(int type, const void* source, const float pt[3], *pos = npos; } - // Thanks to excessi if (pancheck && chanflags & CHANEXF_DONTPAN) { // For unpanned sounds the volume must be set directly and the position taken from the listener. @@ -646,7 +645,7 @@ int _PlaySound(int num, DSWActor* actor, PLAYER* pp, vec3_t* ppos, int flags, in void* source = nullptr; // If the sound is not supposed to be positioned, it may not be linked to the launching actor. - //if (!(flags & v3df_follow)) // use if this is so intermittent that using the flag would break 3D sound. + if (!(flags & v3df_follow)) // use if this is so intermittent that using the flag would break 3D sound. { if (actor && !ppos) {