Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-03-13 19:06:45 +0300
committerbubnikv <bubnikv@gmail.com>2019-03-13 19:06:45 +0300
commitcea6ca83db7ad60d87fe027b6df0d6764ab0fbb5 (patch)
tree8bf38f2ff0fcd81d64aa17d7b67a020e98bb9943 /xs
parent96d88e550eadaf38e31a32a21e87ed2b6e0a84bb (diff)
removed the --gui parameter from the slic3r wrapper.
Fixed the perl bindings
Diffstat (limited to 'xs')
-rw-r--r--xs/src/perlglue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/perlglue.cpp b/xs/src/perlglue.cpp
index 1a551d67b..eea5ad54f 100644
--- a/xs/src/perlglue.cpp
+++ b/xs/src/perlglue.cpp
@@ -251,7 +251,7 @@ bool ConfigBase__set(ConfigBase* THIS, const t_config_option_key &opt_key, SV* v
case coPoint:
return from_SV_check(value, &static_cast<ConfigOptionPoint*>(opt)->value);
case coPoint3:
- return from_SV_check(value, &static_cast<ConfigOptionPoint3*>(&opt)->value);
+ return from_SV_check(value, &static_cast<ConfigOptionPoint3*>(opt)->value);
case coPoints:
{
std::vector<Vec2d> &values = static_cast<ConfigOptionPoints*>(opt)->values;