mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-04-26 03:51:46 +00:00
Fixed rare crash in geo_process_node_and_siblings
This commit is contained in:
parent
da56bd7bad
commit
d73216a899
1 changed files with 1 additions and 1 deletions
|
|
@ -1430,7 +1430,7 @@ void geo_process_node_and_siblings(struct GraphNode *firstNode) {
|
|||
((struct GraphNodeObject *) curGraphNode)->throwMatrix = NULL;
|
||||
}
|
||||
}
|
||||
} while (iterateChildren && (curGraphNode = curGraphNode->next) != firstNode);
|
||||
} while (iterateChildren && curGraphNode && (curGraphNode = curGraphNode->next) != firstNode);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue