fixed: The generic sound loader for SNDINFO must use S_LookupSound to match the feature set of the game specific code.

SW uses this and also needs to be able to handle the extended lookup.
This commit is contained in:
Christoph Oelckers 2023-12-26 18:40:08 +01:00
parent 485ad27a5a
commit 5b4aa573b1

View file

@ -158,7 +158,7 @@ static FSoundID S_AddSound(const char* logicalname, int lumpnum, FScanner* sc)
FSoundID S_AddSound(const char* logicalname, const char* lumpname, FScanner* sc)
{
int lump = fileSystem.CheckNumForFullName(lumpname, true, FileSys::ns_sounds);
int lump = S_LookupSound(lumpname);
if (lump == -1 && sc && fileSystem.GetFileContainer(sc->LumpNum) > fileSystem.GetMaxIwadNum())
sc->ScriptMessage("%s: sound file not found", sc->String);
return S_AddSound(logicalname, lump, sc);