fixed issue breaking video rendering

This commit is contained in:
itsmattkc
2019-10-23 00:59:36 +11:00
parent 9b6028430f
commit 0c04e59a48
+1 -1
View File
@@ -67,7 +67,7 @@ QVariant NodeOutput::get_value(const rational& in, const rational& out)
if (in_ != in || out_ != out || !value_caching_) {
// Update the value
value_ = parent()->Run(this, in_, out_);
value_ = parent()->Run(this, in, out);
in_ = in;
out_ = out;