mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- changed: Maps with missing first sidedefs no longer abort. THey now print a console warning and use the first sidedef in the map.
SVN r2344 (trunk)
This commit is contained in:
parent
042e913022
commit
cd1104e80c
2 changed files with 21 additions and 4 deletions
|
@ -1967,8 +1967,14 @@ void P_LoadLineDefs (MapData * map)
|
|||
}
|
||||
else
|
||||
{
|
||||
if (LittleShort(mld->sidenum[0]) != NO_INDEX)
|
||||
sidecount++;
|
||||
// patch missing first sides instead of crashing out.
|
||||
// Visual glitches are better than not being able to play.
|
||||
if (LittleShort(mld->sidenum[0]) == NO_INDEX)
|
||||
{
|
||||
Printf("Line %d has no first side.\n", i);
|
||||
mld->sidenum[0] = 0;
|
||||
}
|
||||
sidecount++;
|
||||
if (LittleShort(mld->sidenum[1]) != NO_INDEX)
|
||||
sidecount++;
|
||||
linemap[i] = i+skipped;
|
||||
|
@ -2037,8 +2043,14 @@ void P_LoadLineDefs2 (MapData * map)
|
|||
}
|
||||
else
|
||||
{
|
||||
if (LittleShort(mld->sidenum[0]) != NO_INDEX)
|
||||
sidecount++;
|
||||
// patch missing first sides instead of crashing out.
|
||||
// Visual glitches are better than not being able to play.
|
||||
if (LittleShort(mld->sidenum[0]) == NO_INDEX)
|
||||
{
|
||||
Printf("Line %d has no first side.\n", i);
|
||||
mld->sidenum[0] = 0;
|
||||
}
|
||||
sidecount++;
|
||||
if (LittleShort(mld->sidenum[1]) != NO_INDEX)
|
||||
sidecount++;
|
||||
linemap[i] = i+skipped;
|
||||
|
|
|
@ -850,6 +850,11 @@ struct UDMFParser
|
|||
{
|
||||
ld->Alpha = FRACUNIT * 3/4;
|
||||
}
|
||||
if (ld->sidedef[0] == NULL)
|
||||
{
|
||||
ld->sidedef[0] = (side_t*)(intptr_t)(1);
|
||||
Printf("Line %d has no first side.\n", index);
|
||||
}
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
|
|
Loading…
Reference in a new issue