mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- ensure thar PRINTNAME_LEVEL always uses uppercase.
This commit is contained in:
parent
158caf78a0
commit
c5c4ec83c2
1 changed files with 6 additions and 2 deletions
|
@ -7782,8 +7782,12 @@ scriptwait:
|
|||
break;
|
||||
|
||||
case PRINTNAME_LEVEL:
|
||||
work += level.MapName;
|
||||
break;
|
||||
{
|
||||
FString uppername = level.MapName;
|
||||
uppername.ToUpper();
|
||||
work += uppername;
|
||||
break;
|
||||
}
|
||||
|
||||
case PRINTNAME_SKILL:
|
||||
work += G_SkillName();
|
||||
|
|
Loading…
Reference in a new issue