mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-03-02 06:42:41 +00:00
- fixed incomplete parsing of UMAPINFO when map already exists
https://forum.zdoom.org/viewtopic.php?t=65100
This commit is contained in:
parent
8ec249077d
commit
a334d08a7b
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ int ParseUMapInfo(int lumpnum)
|
||||||
if (!parsed.MapName.Compare(Maps[i].MapName))
|
if (!parsed.MapName.Compare(Maps[i].MapName))
|
||||||
{
|
{
|
||||||
Maps[i] = parsed;
|
Maps[i] = parsed;
|
||||||
return 1;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Not found so create a new one.
|
// Not found so create a new one.
|
||||||
|
|
Loading…
Reference in a new issue