mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- fixed: The map loader did not check for the new node formats.
SVN r3982 (trunk)
This commit is contained in:
parent
d77297e969
commit
deff47ea18
1 changed files with 1 additions and 1 deletions
|
@ -3718,7 +3718,7 @@ void P_SetupLevel (char *lumpname, int position)
|
||||||
}
|
}
|
||||||
|
|
||||||
map->file->Read (&id, 4);
|
map->file->Read (&id, 4);
|
||||||
if (id != 0 && (id == idcheck || id == idcheck2 || id == idcheck3 || id == idcheck4))
|
if (id != 0 && (id == idcheck || id == idcheck2 || id == idcheck3 || id == idcheck4 || id == idcheck5 || id == idcheck6))
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue