diff options
Diffstat (limited to 'render.cc')
-rw-r--r-- | render.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ AbstractNode *RenderModule::evaluate(const Context *ctx, const ModuleInstanciati Value v = c.lookup_variable("convexity"); if (v.type == Value::NUMBER) - node->convexity = v.num; + node->convexity = (int)v.num; foreach (ModuleInstanciation *v, inst->children) { AbstractNode *n = v->evaluate(inst->ctx); |