diff options
author | David Robillard <d@drobilla.net> | 2007-09-19 05:30:41 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-09-19 05:30:41 +0000 |
commit | 36b22fe2bea643d7d4ff69764016ae5be9c6de69 (patch) | |
tree | 19e99c3bfa011f8ef86ce1438b676d6826cad31a /src/libs/engine/events | |
parent | 80d9c348e1e571837ae37cd28d342c81c14a52be (diff) | |
download | ingen-36b22fe2bea643d7d4ff69764016ae5be9c6de69.tar.gz ingen-36b22fe2bea643d7d4ff69764016ae5be9c6de69.tar.bz2 ingen-36b22fe2bea643d7d4ff69764016ae5be9c6de69.zip |
Broadcast polyphony changes to clients.
Fix some (not all) crashes on polyphony change.
git-svn-id: http://svn.drobilla.net/lad/ingen@725 a436a847-0d15-0410-975c-d299462d15a1
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"); + } } |