Skip to content

Commit

Permalink
- fix last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Jan 21, 2023
1 parent dbef2f7 commit 5ebce5a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/core/music/s_advsound.cpp
Expand Up @@ -149,7 +149,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, ns_sounds);
if (lump == -1) sc->ScriptMessage("%s: sound file not found");
if (lump == -1 && sc) sc->ScriptMessage("%s: sound file not found", sc->String);
return S_AddSound(logicalname, lump, sc);
}

Expand Down
Binary file added wadsrc/static/sounds/dsempty.lmp
Binary file not shown.

0 comments on commit 5ebce5a

Please sign in to comment.