diff options
| author | Comment <tim@gray.(none)> | 2013-03-11 14:41:27 +0000 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2013-03-11 14:41:27 +0000 |
| commit | d1ad9a5c002aa4fafceb8f9740e37238e404177d (patch) | |
| tree | c701c1fdfd4492d5cc490751b386e66ec0bb45d1 /rotord/rotor.cpp | |
| parent | 55a63ac09264a38fafdf4a218e86b598030fb47c (diff) | |
graph linking and traversing
Diffstat (limited to 'rotord/rotor.cpp')
| -rw-r--r-- | rotord/rotor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rotord/rotor.cpp b/rotord/rotor.cpp index 559e47c..c0b9fc5 100644 --- a/rotord/rotor.cpp +++ b/rotord/rotor.cpp @@ -42,9 +42,9 @@ void Render_context::add_queue(int item) { mutex.unlock(); } -bool Signal_input::connect(Node* source) { +bool Signal_input::connect(Signal_node* source) { if (source->output_type=="signal") { - connection=source; + connection=(Node*)source; return true; } else return false; |
