diff options
| author | Tim Redfern <tim@eclectronics.org> | 2014-01-22 17:37:11 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2014-01-22 17:37:11 +0000 |
| commit | a897d2e0ba7744c818eed46441347cfb4f384613 (patch) | |
| tree | b6f0e686c190657ca878b841d150522efd1387b8 /NT/src/graph.cpp | |
| parent | a879f37ff944cd7bf502f4e3520b7da3d8faf39b (diff) | |
graph connections working, beginning render context
Diffstat (limited to 'NT/src/graph.cpp')
| -rw-r--r-- | NT/src/graph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NT/src/graph.cpp b/NT/src/graph.cpp index f774528..ef638cc 100644 --- a/NT/src/graph.cpp +++ b/NT/src/graph.cpp @@ -50,7 +50,7 @@ bool Graph::parse_json(string &data,string &media_path){ clear(); Node_factory factory; check_audio(root["audio"].asString(),media_path); - init(root["id"].asString(),root["description"].asString()); + init(root["id"].asString()); Json::Value jnodes = root["nodes"]; for ( uint32_t i = 0; i < jnodes.size(); ++i ) { string node_id=jnodes[i]["id"].asString(); |
