* Comment out the notices that the two types of music are disabled (see issue #179; not a perfect fix, but good enough for now).

This commit is contained in:
toaster 2019-09-07 11:49:13 +01:00
parent 54b89eefbb
commit cf4b5a1b9d

View file

@ -1783,12 +1783,12 @@ static lumpnum_t S_GetMusicLumpNum(const char *mname)
return W_GetNumForName(va("d_%s", mname)); return W_GetNumForName(va("d_%s", mname));
else if (S_DigMusicDisabled() && S_DigExists(mname)) else if (S_DigMusicDisabled() && S_DigExists(mname))
{ {
CONS_Alert(CONS_NOTICE, "Digital music is disabled!\n"); //CONS_Alert(CONS_NOTICE, "Digital music is disabled!\n");
return LUMPERROR; return LUMPERROR;
} }
else if (S_MIDIMusicDisabled() && S_MIDIExists(mname)) else if (S_MIDIMusicDisabled() && S_MIDIExists(mname))
{ {
CONS_Alert(CONS_NOTICE, "MIDI music is disabled!\n"); //CONS_Alert(CONS_NOTICE, "MIDI music is disabled!\n");
return LUMPERROR; return LUMPERROR;
} }
else else