summaryrefslogtreecommitdiff
path: root/rotord/graph.cpp
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-04-28 16:15:02 +0100
committerComment <tim@gray.(none)>2013-04-28 16:15:02 +0100
commit2ee0ac43e70c941bae5860a8104a54c273474ee6 (patch)
treea83a5e448428e57b80d443829974f29df5acdda9 /rotord/graph.cpp
parentf09e12889c4ebfa3db21fa30955698171a22757b (diff)
getting black frames
Diffstat (limited to 'rotord/graph.cpp')
-rw-r--r--rotord/graph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rotord/graph.cpp b/rotord/graph.cpp
index 69c4811..fc9a129 100644
--- a/rotord/graph.cpp
+++ b/rotord/graph.cpp
@@ -54,8 +54,8 @@ bool Graph::load(string &filename){
settings["description"]=xml.getValue("node","",i1);
Node* node=factory.create(settings);
if (node) {
- cerr << "Rotor: created '" << xml.getAttribute("node","type","",i1) << "'" << endl;
string nodeID=xml.getAttribute("node","ID","",i1);
+ cerr << "Rotor: created node '"<<nodeID<<"': '"<< xml.getAttribute("node","type","",i1) << "'" << endl;
nodes[nodeID]=node;
if(xml.pushTag("node",i1)) {
int n2=xml.getNumTags("signal_input");