- fixed the user map label.

TXT_USERMAP does not exist, only MNU_USERMAP does.
This commit is contained in:
Christoph Oelckers 2021-12-26 12:09:06 +01:00
parent 745794a1f1
commit 99b069d122
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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()