- Updated Jim's Makefile.linux.
- Added support for wrapping midtextures vertically. - Since zdoom.wad is now zdoom.pk3, the default mapinfos can use full pathnames. So now they do. - Fixed: The DSimpleCanvas constructor used a pitch too narrow on screens wider than 640 pixels when using a non-AMD processor and the processor's L1 cache line size could not be determined. I think this should fix the issue of weirdly rendered 8 pixel wide borders on the left and right of the screen that some people experienced. - Fixed: The secnodes were never freed. SVN r93 (trunk)
This commit is contained in:
parent
7ed597fcbe
commit
981f663319
18 changed files with 1016 additions and 115 deletions
|
|
@ -4240,6 +4240,22 @@ bool P_ChangeSector (sector_t *sector, int crunch, int amt, int floorOrCeil)
|
|||
|
||||
msecnode_t *headsecnode = NULL;
|
||||
|
||||
struct SecnodeKiller
|
||||
{
|
||||
~SecnodeKiller()
|
||||
{
|
||||
msecnode_t *node = headsecnode;
|
||||
|
||||
while (node != NULL)
|
||||
{
|
||||
msecnode_t *next = node->m_snext;
|
||||
free (node);
|
||||
node = next;
|
||||
}
|
||||
headsecnode = NULL;
|
||||
}
|
||||
} KillTheSecnodes;
|
||||
|
||||
//=============================================================================
|
||||
//
|
||||
// P_GetSecnode
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue