mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 16:07:55 +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;
|
break;
|
||||||
|
|
||||||
case PRINTNAME_LEVEL:
|
case PRINTNAME_LEVEL:
|
||||||
work += level.MapName;
|
{
|
||||||
break;
|
FString uppername = level.MapName;
|
||||||
|
uppername.ToUpper();
|
||||||
|
work += uppername;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case PRINTNAME_SKILL:
|
case PRINTNAME_SKILL:
|
||||||
work += G_SkillName();
|
work += G_SkillName();
|
||||||
|
|
Loading…
Reference in a new issue