mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 12:11:25 +00:00
- Fixed: The UDMF loader did not initialize the sectors' sectornum property.
SVN r1767 (trunk)
This commit is contained in:
parent
74bdfe19c5
commit
da33f333a1
2 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
|||
August 10, 2009 (Changes by Graf Zahl)
|
||||
August 10, 2009
|
||||
- Fixed: The UDMF loader did not initialize the sectors' sectornum property.
|
||||
|
||||
August 10, 2009 (Changes by Graf Zahl)
|
||||
- Fixed: The true color texture compositing code did not clip the edges
|
||||
of multipatch textures used as patches on other multipatch textures.
|
||||
|
||||
|
|
|
@ -1020,6 +1020,7 @@ struct UDMFParser
|
|||
sec->nextsec = -1; //jff 2/26/98 add fields to support locking out
|
||||
sec->prevsec = -1; // stair retriggering until build completes
|
||||
sec->heightsec = NULL; // sector used to get floor and ceiling height
|
||||
sec->sectornum = index;
|
||||
if (floordrop) sec->Flags = SECF_FLOORDROP;
|
||||
// killough 3/7/98: end changes
|
||||
|
||||
|
|
Loading…
Reference in a new issue