mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 15:22:08 +00:00
- added missing range checks to level compatibility handler
# Conflicts: # src/compatibility.cpp
This commit is contained in:
parent
dbc03a9f9d
commit
8d34cf15cc
1 changed files with 12 additions and 5 deletions
|
@ -333,10 +333,13 @@ DEFINE_ACTION_FUNCTION(DLevelCompatibility, OffsetSectorPlane)
|
||||||
PARAM_INT(planeval);
|
PARAM_INT(planeval);
|
||||||
PARAM_FLOAT(delta);
|
PARAM_FLOAT(delta);
|
||||||
|
|
||||||
sector_t *sec = &level.sectors[sector];
|
if ((unsigned)sector < self->Level->sectors.Size())
|
||||||
secplane_t& plane = sector_t::floor == planeval? sec->floorplane : sec->ceilingplane;
|
{
|
||||||
plane.ChangeHeight(delta);
|
sector_t *sec = &self->Level->sectors[sector];
|
||||||
sec->ChangePlaneTexZ(planeval, delta);
|
secplane_t& plane = sector_t::floor == planeval? sec->floorplane : sec->ceilingplane;
|
||||||
|
plane.ChangeHeight(delta);
|
||||||
|
sec->ChangePlaneTexZ(planeval, delta);
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -353,7 +356,11 @@ DEFINE_ACTION_FUNCTION(DLevelCompatibility, AddSectorTag)
|
||||||
PARAM_PROLOGUE;
|
PARAM_PROLOGUE;
|
||||||
PARAM_INT(sector);
|
PARAM_INT(sector);
|
||||||
PARAM_INT(tag);
|
PARAM_INT(tag);
|
||||||
tagManager.AddSectorTag(sector, tag);
|
|
||||||
|
if ((unsigned)sector < self->Level->sectors.Size())
|
||||||
|
{
|
||||||
|
tagManager.AddSectorTag(sector, tag);
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue