From 1c746982c4d1b18308ce549852d8ecd83d612db5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 20 May 2008 00:30:50 +0000 Subject: Fix various problems with control port values. Fix control port feedback issues with LV2 plugin UIs. git-svn-id: http://svn.drobilla.net/lad/ingen@1218 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/PortImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libs/engine/PortImpl.cpp') diff --git a/src/libs/engine/PortImpl.cpp b/src/libs/engine/PortImpl.cpp index 9500aab1..04296a04 100644 --- a/src/libs/engine/PortImpl.cpp +++ b/src/libs/engine/PortImpl.cpp @@ -47,7 +47,7 @@ PortImpl::PortImpl(NodeImpl* const node, , _value(value) , _fixed_buffers(false) , _broadcast(false) - , _last_broadcasted_value(_value) // default? + , _last_broadcasted_value(_value.type() == Atom::FLOAT ? _value.get_float() : 0.0f) // default? , _buffers(new Raul::Array(poly)) { assert(node != NULL); -- cgit v1.2.1