diff options
Diffstat (limited to 'src/libs/engine/events')
-rw-r--r-- | src/libs/engine/events/SetPolyphonyEvent.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libs/engine/events/SetPolyphonyEvent.cpp b/src/libs/engine/events/SetPolyphonyEvent.cpp index 8dfed9c8..bdf4e1a1 100644 --- a/src/libs/engine/events/SetPolyphonyEvent.cpp +++ b/src/libs/engine/events/SetPolyphonyEvent.cpp @@ -66,10 +66,12 @@ SetPolyphonyEvent::execute(SampleCount nframes, FrameTime start, FrameTime end) void SetPolyphonyEvent::post_process() { - if (_patch) + if (_patch) { _responder->respond_ok(); - else + _engine.broadcaster()->send_patch_polyphony(_patch_path, _poly); + } else { _responder->respond_error("Unable to find patch"); + } } |