mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 04:22:34 +00:00
Pretty sure this was a typo
This commit is contained in:
parent
0c37a90e32
commit
078d37e073
1 changed files with 2 additions and 2 deletions
|
@ -158,8 +158,8 @@ struct ZCC_TreeNode
|
|||
assert(SiblingNext->SiblingPrev == this);
|
||||
|
||||
// Check integrity of new sibling list.
|
||||
assert(sibling->SiblingPrev->SiblingNext = sibling);
|
||||
assert(sibling->SiblingNext->SiblingPrev = sibling);
|
||||
assert(sibling->SiblingPrev->SiblingNext == sibling);
|
||||
assert(sibling->SiblingNext->SiblingPrev == sibling);
|
||||
|
||||
ZCC_TreeNode *siblingend = sibling->SiblingPrev;
|
||||
SiblingPrev->SiblingNext = sibling;
|
||||
|
|
Loading…
Reference in a new issue