From 0c04e59a48ae6d77b85018b4bcfef79b2c89a242 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Wed, 23 Oct 2019 00:59:36 +1100 Subject: [PATCH] fixed issue breaking video rendering --- app/node/output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/node/output.cpp b/app/node/output.cpp index 13491fd30..a2bc51fa5 100644 --- a/app/node/output.cpp +++ b/app/node/output.cpp @@ -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;