Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Allow uppercase episode shortcuts in UMAPINFO #486

Merged
merged 1 commit into from
Mar 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions prboom2/src/umapinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,7 @@ static int ParseStandardProperty(Scanner &scanner, MapEntry *mape)
{
scanner.MustGetToken(TK_StringConst);
key = strdup(scanner.string);
key[0] = tolower(key[0]);
}
}

Expand Down