Allow lowercase level name / zone title

Might have some other side-effects, we'll need to see
This commit is contained in:
Sally Coolatta 2020-08-16 22:13:21 -04:00
parent f5bd9d097f
commit 47f95e22d5

View file

@ -968,6 +968,16 @@ static void readlevelheader(MYFILE *f, INT32 num)
#endif #endif
continue; continue;
} }
else if (fastcmp(word, "LEVELNAME"))
{
deh_strlcpy(mapheaderinfo[num-1]->lvlttl, word2,
sizeof(mapheaderinfo[num-1]->lvlttl), va("Level header %d: levelname", num));
}
else if (fastcmp(word, "ZONETITLE"))
{
deh_strlcpy(mapheaderinfo[num-1]->zonttl, word2,
sizeof(mapheaderinfo[num-1]->zonttl), va("Level header %d: zonetitle", num));
}
// Now go to uppercase // Now go to uppercase
strupr(word2); strupr(word2);
@ -987,16 +997,6 @@ static void readlevelheader(MYFILE *f, INT32 num)
} }
// Strings that can be truncated // Strings that can be truncated
else if (fastcmp(word, "LEVELNAME"))
{
deh_strlcpy(mapheaderinfo[num-1]->lvlttl, word2,
sizeof(mapheaderinfo[num-1]->lvlttl), va("Level header %d: levelname", num));
}
else if (fastcmp(word, "ZONETITLE"))
{
deh_strlcpy(mapheaderinfo[num-1]->zonttl, word2,
sizeof(mapheaderinfo[num-1]->zonttl), va("Level header %d: zonetitle", num));
}
else if (fastcmp(word, "SCRIPTNAME")) else if (fastcmp(word, "SCRIPTNAME"))
{ {
deh_strlcpy(mapheaderinfo[num-1]->scriptname, word2, deh_strlcpy(mapheaderinfo[num-1]->scriptname, word2,