diff options
Diffstat (limited to 'src/libs/engine/ClientBroadcaster.cpp')
-rw-r--r-- | src/libs/engine/ClientBroadcaster.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libs/engine/ClientBroadcaster.cpp b/src/libs/engine/ClientBroadcaster.cpp index 5023b2e0..0a98c05c 100644 --- a/src/libs/engine/ClientBroadcaster.cpp +++ b/src/libs/engine/ClientBroadcaster.cpp @@ -229,6 +229,14 @@ ClientBroadcaster::send_patch_disable(const string& patch_path) } +void +ClientBroadcaster::send_patch_polyphony(const string& patch_path, uint32_t poly) +{ + for (Clients::const_iterator i = _clients.begin(); i != _clients.end(); ++i) + (*i).second->patch_polyphony(patch_path, poly); +} + + /** Send notification of a metadata update. * * Like control changes, does not send update to client that set the metadata, if applicable. |