mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-22 11:21:09 +00:00
- fixed map name setup
This was broken when localization for Hexen was added.
This commit is contained in:
parent
ec4f306463
commit
8a7487ad14
1 changed files with 12 additions and 9 deletions
|
@ -1815,10 +1815,12 @@ level_info_t *FMapInfoParser::ParseMapHeader(level_info_t &defaultinfo)
|
|||
levelinfo->flags |= LEVEL_LOOKUPLEVELNAME;
|
||||
levelinfo->LevelName = sc.String;
|
||||
}
|
||||
else if (HexenHack)
|
||||
else
|
||||
{
|
||||
levelinfo->LevelName = sc.String;
|
||||
|
||||
if (HexenHack)
|
||||
{
|
||||
// Try to localize Hexen's map names.
|
||||
int fileno = Wads.GetLumpFile(sc.LumpNum);
|
||||
auto fn = Wads.GetWadName(fileno);
|
||||
|
@ -1833,6 +1835,7 @@ level_info_t *FMapInfoParser::ParseMapHeader(level_info_t &defaultinfo)
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Set up levelnum now so that you can use Teleport_NewMap specials
|
||||
// to teleport to maps with standard names without needing a levelnum.
|
||||
|
|
Loading…
Reference in a new issue