diff options
Diffstat (limited to 'src/libs/serialisation/Loader.cpp')
-rw-r--r-- | src/libs/serialisation/Loader.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/serialisation/Loader.cpp b/src/libs/serialisation/Loader.cpp index ec60225d..a911eb72 100644 --- a/src/libs/serialisation/Loader.cpp +++ b/src/libs/serialisation/Loader.cpp @@ -205,7 +205,7 @@ Loader::load(SharedPtr<EngineInterface> engine, const Path port_path = patch_path.base() + node_name +"/"+ port_name; - engine->set_port_value(port_path, sizeof(float), &val); + engine->set_port_value(port_path, "ingen:control", sizeof(float), &val); } @@ -242,9 +242,10 @@ Loader::load(SharedPtr<EngineInterface> engine, RDF::Node val_node = (*i)["portval"]; if (val_node.is_float()) { const float val = val_node.to_float(); - engine->set_port_value(patch_path.base() + name, sizeof(float), &val); + engine->set_port_value(patch_path.base() + name, "ingen:control", sizeof(float), &val); } + string floatkey = rdf_world->qualify((*i)["floatkey"].to_string()); val_node = (*i)["floatval"]; |