summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/SendPortValueEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/events/SendPortValueEvent.hpp')
-rw-r--r--src/libs/engine/events/SendPortValueEvent.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libs/engine/events/SendPortValueEvent.hpp b/src/libs/engine/events/SendPortValueEvent.hpp
index d63d43b0..e80682d0 100644
--- a/src/libs/engine/events/SendPortValueEvent.hpp
+++ b/src/libs/engine/events/SendPortValueEvent.hpp
@@ -43,15 +43,14 @@ class Port;
class SendPortValueEvent : public Event
{
public:
- SendPortValueEvent() {}
-
inline SendPortValueEvent(Engine& engine,
SampleCount timestamp,
Port* port,
bool omni,
uint32_t voice_num,
Sample value)
- : _port(port)
+ : Event(engine, SharedPtr<Responder>(), timestamp)
+ , _port(port)
, _omni(omni)
, _voice_num(voice_num)
, _value(value)