From 8d4631eee9ebbf01c36dfb06f6c3f4736076f833 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 6 Dec 2023 16:27:58 +0100 Subject: [PATCH] fixed: Resource IDs for sounds must be unique. If an ID gets used it must be taken off any other sound that has it. --- source/core/music/s_advsound.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/source/core/music/s_advsound.cpp b/source/core/music/s_advsound.cpp index d98f6e794..d2c0ba99a 100644 --- a/source/core/music/s_advsound.cpp +++ b/source/core/music/s_advsound.cpp @@ -461,9 +461,16 @@ static void S_AddSNDINFO (int lump) // Assigns a resource ID to the given sound. sc.MustGetString(); FSoundID sfx = soundEngine->FindSoundTentative(sc.String, DEFAULT_LIMIT); - auto sfxp = soundEngine->GetWritableSfx(sfx); sc.MustGetNumber(); + // remove resource ID from any previously defined sound. + for (unsigned i = 0; i < soundEngine->GetNumSounds(); i++) + { + auto sfxp = soundEngine->GetWritableSfx(FSoundID::fromInt(i)); + if (sfxp->ResourceId == sc.Number) sfxp->ResourceId = -1; + + } + auto sfxp = soundEngine->GetWritableSfx(sfx); sfxp->ResourceId = sc.Number; break; }