diff options
Diffstat (limited to 'src/primitives.cc')
-rw-r--r-- | src/primitives.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/primitives.cc b/src/primitives.cc index 466a0c7..feaa1a4 100644 --- a/src/primitives.cc +++ b/src/primitives.cc @@ -148,11 +148,11 @@ AbstractNode *PrimitiveModule::evaluate(const Context *ctx, const ModuleInstanti node->fa = c.lookup_variable("$fa").num; if (node->fs < F_MINIMUM) { - PRINTF("WARNING: $fs too small - clamping to %f", F_MINIMUM); + PRINTB("WARNING: $fs too small - clamping to %f", F_MINIMUM); node->fs = F_MINIMUM; } if (node->fa < F_MINIMUM) { - PRINTF("WARNING: $fa too small - clamping to %f", F_MINIMUM); + PRINTB("WARNING: $fa too small - clamping to %f", F_MINIMUM); node->fa = F_MINIMUM; } @@ -505,7 +505,7 @@ sphere_next_r2: for (size_t i=0; i<this->points.vec.size(); i++) { double x,y; if (!this->points.vec[i]->getv2(x, y)) { - PRINTF("ERROR: Unable to convert point at index %d to a vec2 of numbers", int(i)); + PRINTB("ERROR: Unable to convert point at index %d to a vec2 of numbers", i); delete p; return NULL; } |