aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2020-06-12 20:27:57 +0200
committerRenaud G <renaud@rolisteam.org>2020-06-12 20:27:57 +0200
commit9d322992515305edfd34f72a77fff1793c7325d5 (patch)
tree2e78e132b610192664951ccc1503a4905de8e58d /node
parent3d1abaab925f635f242cd26e661324ab05d1b09a (diff)
downloadOneRoll-9d322992515305edfd34f72a77fff1793c7325d5.tar.gz
OneRoll-9d322992515305edfd34f72a77fff1793c7325d5.zip
Fix error with paint node.
Diffstat (limited to 'node')
-rw-r--r--node/paintnode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/paintnode.cpp b/node/paintnode.cpp
index 0cd4e10..c0c7079 100644
--- a/node/paintnode.cpp
+++ b/node/paintnode.cpp
@@ -86,7 +86,7 @@ void PainterNode::run(ExecutionNode* previous)
}
if(nullptr != m_nextNode)
{
- m_nextNode->run(previous);
+ m_nextNode->run(this);
}
}
Result* PainterNode::getResult()