Revert "Fix DSradio bug in chat for clang users"

This reverts commit e2524356da.
This commit is contained in:
NepDisk 2025-06-30 01:36:06 -04:00
parent 7c214d8730
commit b91f4c4133

View file

@ -314,11 +314,8 @@ static void SetChannelsNum(void)
lumpnum_t S_GetSfxLumpNum(sfxinfo_t *sfx)
{
lumpnum_t sfxlump;
char dsname[10];
sprintf(dsname, "DS%s", sfx->name);
sfxlump = W_CheckNumForLongName(dsname);
sfxlump = W_CheckNumForLongName(va("DS%s", sfx->name));
if (sfxlump != LUMPERROR)
return sfxlump;