From 809d2fc5557d85aeae5082411914c065cc21d1a6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 1 Mar 2020 09:59:52 +0100 Subject: [PATCH] - fixed SW: DoPlayerFall should only stop the scream sound, but nothing else. --- source/sw/src/game.h | 2 +- source/sw/src/player.cpp | 2 +- source/sw/src/sounds.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/sw/src/game.h b/source/sw/src/game.h index 4560ca6fc..9e78a81a7 100644 --- a/source/sw/src/game.h +++ b/source/sw/src/game.h @@ -2114,7 +2114,7 @@ inline void PlaySound(int num, vec3_t *pos, Voc3D_Flags flags, int channel = 8, int _PlayerSound(int num, PLAYERp pp); inline int PlayerSound(int num, int flags, PLAYERp pp) { return _PlayerSound(num, pp); } -void StopPlayerSound(PLAYERp pp); +void StopPlayerSound(PLAYERp pp, int which = -1); bool SoundValidAndActive(SPRITEp spr, int channel); diff --git a/source/sw/src/player.cpp b/source/sw/src/player.cpp index 5b94fb7df..89d72cb22 100644 --- a/source/sw/src/player.cpp +++ b/source/sw/src/player.cpp @@ -3728,7 +3728,7 @@ DoPlayerFall(PLAYERp pp) PlaySound(DIGI_HITGROUND, pp, v3df_follow|v3df_dontpan); } - StopPlayerSound(pp); + StopPlayerSound(pp, DIGI_FALLSCREAM); // i any kind of crawl key get rid of recoil if (DoPlayerTestCrawl(pp) || TEST_SYNC_KEY(pp, SK_CRAWL)) diff --git a/source/sw/src/sounds.cpp b/source/sw/src/sounds.cpp index 1268dad30..7b1891e7b 100644 --- a/source/sw/src/sounds.cpp +++ b/source/sw/src/sounds.cpp @@ -824,9 +824,9 @@ int _PlayerSound(int num, PLAYERp pp) return 0; } -void StopPlayerSound(PLAYERp pp) +void StopPlayerSound(PLAYERp pp, int which) { - soundEngine->StopSound(SOURCE_Player, pp, CHAN_VOICE); + soundEngine->StopSound(SOURCE_Player, pp, CHAN_VOICE, which); } bool SoundValidAndActive(SPRITEp spr, int channel)