summaryrefslogtreecommitdiff
path: root/rotord/src/graph.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-08-20 17:26:56 +0100
committerTim Redfern <tim@eclectronics.org>2013-08-20 17:26:56 +0100
commit18b3b3a7f81e03ac7833eb8b99ea9c59274f872a (patch)
tree129c0ff46750178bf840482c08464baea71192dc /rotord/src/graph.cpp
parent1ba9ed9c71f11b638fb829ed9ff5946df09bab35 (diff)
fixed signal_colour, creating audio visualisation framework
Diffstat (limited to 'rotord/src/graph.cpp')
-rw-r--r--rotord/src/graph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rotord/src/graph.cpp b/rotord/src/graph.cpp
index 3aa2925..026325f 100644
--- a/rotord/src/graph.cpp
+++ b/rotord/src/graph.cpp
@@ -151,7 +151,7 @@ bool Graph::parseXml(string media_path){
}
else cerr << "Rotor: linked parameter input " << i4 << " of node '" << nodeID << "' to node '" << fromID << "'" << endl;
}
- else cerr << "Rotor: linking parameter input " << i4 << " of node: '" << nodeID << "', cannot find target '" << fromID << "'" << endl;
+ else if (fromID!="") cerr << "Rotor: linking parameter input " << i4 << " of node: '" << nodeID << "', cannot find target '" << fromID << "'" << endl;
}
else cerr << "Rotor: cannot find parameter input '" << parameter << "' of "<<nodetype<<" "<< nodeID << endl;
}