mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- last commit deleted a small piece of code.
This commit is contained in:
parent
f201dab534
commit
f818d25542
2 changed files with 8 additions and 4 deletions
|
@ -3436,12 +3436,17 @@ void P_FreeLevelData ()
|
|||
level.killed_monsters = level.found_items = level.found_secrets =
|
||||
wminfo.maxfrags = 0;
|
||||
|
||||
FBehavior::StaticUnloadModules ();
|
||||
level.segs.Clear();
|
||||
if (level.sectors.Size() > 0)
|
||||
{
|
||||
delete[] level.sectors[0].e;
|
||||
}
|
||||
for (auto &sub : level.subsectors)
|
||||
{
|
||||
if (sub.BSP != nullptr) delete sub.BSP;
|
||||
}
|
||||
|
||||
FBehavior::StaticUnloadModules ();
|
||||
level.segs.Clear();
|
||||
level.sectors.Clear();
|
||||
level.lines.Clear();
|
||||
level.sides.Clear();
|
||||
|
|
|
@ -1409,7 +1409,7 @@ struct subsector_t
|
|||
FMiniBSP *BSP;
|
||||
seg_t *firstline;
|
||||
sector_t *render_sector;
|
||||
uint32_t numlines;
|
||||
uint32_t numlines;
|
||||
int flags;
|
||||
|
||||
void BuildPolyBSP();
|
||||
|
@ -1462,7 +1462,6 @@ struct FMiniBSP
|
|||
TArray<vertex_t> Verts;
|
||||
};
|
||||
|
||||
|
||||
//
|
||||
// OTHER TYPES
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue