diff options
Diffstat (limited to 'tests/csgtestcore.cc')
-rw-r--r-- | tests/csgtestcore.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/csgtestcore.cc b/tests/csgtestcore.cc index acc7c31..7a031f3 100644 --- a/tests/csgtestcore.cc +++ b/tests/csgtestcore.cc @@ -65,14 +65,14 @@ CsgInfo::CsgInfo() { glview = NULL; } -AbstractNode *find_root_tag(AbstractNode *n) +/*AbstractNode *find_root_tag(AbstractNode *n) { foreach(AbstractNode *v, n->children) { if (v->modinst->tag_root) return v; if (AbstractNode *vroot = find_root_tag(v)) return vroot; } return NULL; -} +}*/ string info_dump(OffscreenView *glview) { |