From d466ea155fb9c55f2a48f2a0be312cb38a8d6c73 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 7 Sep 2021 21:33:15 +0200 Subject: [PATCH] - Exhumed: Avoid masking bits into the sector index as well. # Conflicts: # source/games/exhumed/src/player.cpp --- source/games/exhumed/src/player.cpp | 2 +- source/games/exhumed/src/sound.cpp | 6 +++--- source/games/exhumed/src/sound.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/source/games/exhumed/src/player.cpp b/source/games/exhumed/src/player.cpp index 95c4a98c1..b35b7fe7e 100644 --- a/source/games/exhumed/src/player.cpp +++ b/source/games/exhumed/src/player.cpp @@ -1051,7 +1051,7 @@ void FuncPlayer(int a, int nDamage, int nRun) sprite[nPlayerSprite].yvel = 0; StopSpriteSound(nPlayerSprite); - PlayFXAtXYZ(StaticSound[kSoundJonFDie], sprite[nPlayerSprite].x, sprite[nPlayerSprite].y, sprite[nPlayerSprite].z, sprite[nPlayerSprite].sectnum |= 0x4000); // CHECKME + PlayFXAtXYZ(StaticSound[kSoundJonFDie], sprite[nPlayerSprite].x, sprite[nPlayerSprite].y, sprite[nPlayerSprite].z, sprite[nPlayerSprite].sectnum, CHANF_NONE, 1); // CHECKME } else { diff --git a/source/games/exhumed/src/sound.cpp b/source/games/exhumed/src/sound.cpp index 3dcac8ac4..3d32795f7 100644 --- a/source/games/exhumed/src/sound.cpp +++ b/source/games/exhumed/src/sound.cpp @@ -658,13 +658,13 @@ void PlayFX2(unsigned short nSound, short nSprite, int sectf, EChanFlags chanfla // //========================================================================== -void PlayFXAtXYZ(unsigned short ax, int x, int y, int z, int nSector, EChanFlags chanflags) +void PlayFXAtXYZ(unsigned short ax, int x, int y, int z, int nSector, EChanFlags chanflags, int sectf) { soundx = x; soundy = y; soundz = z; - soundsect = nSector&0x3fff; - PlayFX2(ax, -1, nSector & 0x4000, chanflags); + soundsect = nSector; + PlayFX2(ax, -1, sectf, chanflags); } //========================================================================== diff --git a/source/games/exhumed/src/sound.h b/source/games/exhumed/src/sound.h index 4fdf25866..9763a4810 100644 --- a/source/games/exhumed/src/sound.h +++ b/source/games/exhumed/src/sound.h @@ -132,7 +132,7 @@ void BendAmbientSound(); void CheckAmbience(short nSector); void PlayFX2(unsigned short nSound, short nSprite, int sectf = 0, EChanFlags chanflags = CHANF_NONE, int sprflags = 0); -void PlayFXAtXYZ(unsigned short nSound, int x, int y, int z, int nSector, EChanFlags chanflags = CHANF_NONE); +void PlayFXAtXYZ(unsigned short nSound, int x, int y, int z, int nSector, EChanFlags chanflags = CHANF_NONE, int sectf = 0); inline void D3PlayFX(unsigned short nSound, short nVal, short flags = 0) { PlayFX2(nSound, nVal, 0, CHANF_NONE, flags);