Initialize graphNode->drawingLayer in init_scene_graph_node_links

This commit is contained in:
Arceveti
2022-02-08 18:05:27 -08:00
parent d51708e026
commit c87feb7e66

View File

@@ -15,6 +15,7 @@
*/
void init_scene_graph_node_links(struct GraphNode *graphNode, s32 type) {
graphNode->type = type;
graphNode->drawingLayer = LAYER_FIRST;
graphNode->flags = GRAPH_RENDER_ACTIVE;
graphNode->prev = graphNode;
graphNode->next = graphNode;