mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-05 23:42:36 +00:00
- fixed: When merging clip nodes the redundant one needs to be deleted with RemoveRange.
Calling Free is not enough.
This commit is contained in:
parent
b00f197be3
commit
3992dfae84
1 changed files with 4 additions and 1 deletions
|
@ -111,15 +111,17 @@ bool Clipper::InsertRange(ClipNode* prev, ClipNode* node)
|
|||
if (prev->next && prev->end >= prev->next->start && prev->next->topclip <= prev->next->bottomclip)
|
||||
{
|
||||
prev->end = prev->next->end;
|
||||
Free(prev->next);
|
||||
RemoveRange(prev->next);
|
||||
return true;
|
||||
}
|
||||
ValidateList();
|
||||
return false;
|
||||
}
|
||||
else if (prev->next && node->end >= prev->next->start && prev->next->topclip <= prev->next->bottomclip)
|
||||
{
|
||||
prev->next->start = node->start;
|
||||
Free(node);
|
||||
ValidateList();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -637,6 +639,7 @@ void Clipper::RemoveClipRange(int start, int end)
|
|||
node = node->next;
|
||||
}
|
||||
}
|
||||
ValidateList();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue