From: Holger Schemel Date: Sun, 5 Sep 2021 19:15:00 +0000 (+0200) Subject: improved debug output for level or artwork tree info dump X-Git-Tag: 4.3.0.0~73 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=1e47c9341ba4cc94595bf07b6cac94e1d75fc411 improved debug output for level or artwork tree info dump --- diff --git a/src/libgame/setup.c b/src/libgame/setup.c index f6d5bd11..7614db85 100644 --- a/src/libgame/setup.c +++ b/src/libgame/setup.c @@ -1523,7 +1523,8 @@ int dumpTreeInfo(TreeInfo *node, int depth) DebugContinued("tree", "%c '%s' ['%s] [PARENT: '%s'] %s\n", bullet, node->name, node->identifier, (node->node_parent ? node->node_parent->identifier : "-"), - (node->node_group ? "[GROUP]" : "")); + (node->node_group ? "[GROUP]" : + node->is_copy ? "[COPY]" : "")); if (!node->node_group && !node->parent_link) num_leaf_nodes++;