mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
- fixed the user map label.
TXT_USERMAP does not exist, only MNU_USERMAP does.
This commit is contained in:
parent
745794a1f1
commit
99b069d122
2 changed files with 2 additions and 2 deletions
|
@ -155,7 +155,7 @@ struct MapRecord
|
|||
|
||||
const char* LabelName() const
|
||||
{
|
||||
if (flags & MI_USERMAP) return GStrings("TXT_USERMAP");
|
||||
if (flags & MI_USERMAP) return GStrings("MNU_USERMAP");
|
||||
return labelName;
|
||||
}
|
||||
const char *DisplayName() const
|
||||
|
|
|
@ -100,7 +100,7 @@ struct MapRecord native
|
|||
|
||||
String GetLabelName()
|
||||
{
|
||||
if (flags & USERMAP) return StringTable.Localize("$TXT_USERMAP");
|
||||
if (flags & USERMAP) return StringTable.Localize("$MNU_USERMAP");
|
||||
return labelName;
|
||||
}
|
||||
String DisplayName()
|
||||
|
|
Loading…
Reference in a new issue