diff options
Diffstat (limited to 'src/rotateextrude.cc')
-rw-r--r-- | src/rotateextrude.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rotateextrude.cc b/src/rotateextrude.cc index 0da30ce..e279cf1 100644 --- a/src/rotateextrude.cc +++ b/src/rotateextrude.cc @@ -67,7 +67,7 @@ AbstractNode *RotateExtrudeModule::evaluate(const Context *ctx, const ModuleInst Value scale = c.lookup_variable("scale", true); if (!file.text.empty()) { - PRINTF("DEPRECATED: Support for reading files in rotate_extrude will be removed in future releases. Use a child import() instead."); + PRINT("DEPRECATED: Support for reading files in rotate_extrude will be removed in future releases. Use a child import() instead."); node->filename = c.getAbsolutePath(file.text); } @@ -93,7 +93,7 @@ AbstractNode *RotateExtrudeModule::evaluate(const Context *ctx, const ModuleInst PolySet *RotateExtrudeNode::evaluate_polyset(PolySetEvaluator *evaluator) const { if (!evaluator) { - PRINTF("WARNING: No suitable PolySetEvaluator found for %s module!", this->name().c_str()); + PRINTB("WARNING: No suitable PolySetEvaluator found for %s module!", this->name()); return NULL; } |