Revert NMUSlist to original 2.1

This commit is contained in:
mazmazz 2018-12-16 16:42:57 -05:00
parent 046d36a657
commit 899120e475
1 changed files with 11 additions and 17 deletions

View File

@ -1677,25 +1677,19 @@ static int W_VerifyFile(const char *filename, lumpchecklist_t *checklist,
*/ */
int W_VerifyNMUSlumps(const char *filename) int W_VerifyNMUSlumps(const char *filename)
{ {
// MIDI, MOD/S3M/IT/XM/OGG/MP3/WAV, WAVE SFX
// ENDOOM text and palette lumps
lumpchecklist_t NMUSlist[] = lumpchecklist_t NMUSlist[] =
{ {
{"D_", 2}, // MIDI music {"D_", 2},
{"O_", 2}, // Digital music {"O_", 2},
{"DS", 2}, // Sound effects {"DS", 2},
{"ENDOOM", 6},
{"ENDOOM", 6}, // ENDOOM text lump {"PLAYPAL", 7},
{"PLAYPAL", 7}, // Palette {"COLORMAP", 8},
{"COLORMAP", 8}, // Colormap {"PAL", 3},
{"PAL", 3}, // Palette changes {"CLM", 3},
{"CLM", 3}, // Colormap changes {"TRANS", 5},
{"TRANS", 5}, // Translucency map
#if 0
{"LTFNT", 5}, // Level title font changes
{"STCFN", 5}, // Console font changes
{"TNYFN", 5}, // Tiny console font changes
{"M_", 2}, // Menu changes
#endif
{NULL, 0}, {NULL, 0},
}; };
return W_VerifyFile(filename, NMUSlist, false); return W_VerifyFile(filename, NMUSlist, false);