diff options
author | David Robillard <d@drobilla.net> | 2009-05-28 22:28:05 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-05-28 22:28:05 +0000 |
commit | 304454c63ea00b57b55bc2023e1d52fb51e8ef7f (patch) | |
tree | 9f3afdc3629139c0b43a3d9dfd10fc98f376ab28 /src/serialisation | |
parent | 72e4e4c0c5c7d459f3a80e8cc9cdc755db61f23b (diff) | |
download | ingen-304454c63ea00b57b55bc2023e1d52fb51e8ef7f.tar.gz ingen-304454c63ea00b57b55bc2023e1d52fb51e8ef7f.tar.bz2 ingen-304454c63ea00b57b55bc2023e1d52fb51e8ef7f.zip |
Fix loading connections inside subpatches to patch ports.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2039 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation')
-rw-r--r-- | src/serialisation/Parser.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp index 34d1d24c..02e08308 100644 --- a/src/serialisation/Parser.cpp +++ b/src/serialisation/Parser.cpp @@ -582,12 +582,11 @@ Parser::parse_patch( continue; } - cerr << "FIXME: PARSE PATCH" << endl; - //target->put(port_path, i->second); + target->put(port_path, i->second); } - parse_connections(world, target, model, subject, "/"); parse_properties(world, target, model, subject_node, patch_path, data); + parse_connections(world, target, model, subject, "/"); /* Enable */ |