Skip to content

Commit

Permalink
Parse dsda udmf namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kraflab committed Aug 26, 2023
1 parent c442c09 commit 07e1802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prboom2/src/dsda/udmf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ static void dsda_ParseUDMFIdentifier(Scanner &scanner) {
scanner.MustGetToken('=');
scanner.MustGetToken(TK_StringConst);

if (stricmp(scanner.string, "zdoom"))
if (stricmp(scanner.string, "zdoom") && stricmp(scanner.string, "dsda"))
scanner.ErrorF("Unknown UDMF namespace \"%s\"", scanner.string);

scanner.MustGetToken(';');
Expand Down

0 comments on commit 07e1802

Please sign in to comment.