summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/Port.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/Port.hpp')
-rw-r--r--src/libs/engine/Port.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/Port.hpp b/src/libs/engine/Port.hpp
index 5b1c86b2..64fde9cc 100644
--- a/src/libs/engine/Port.hpp
+++ b/src/libs/engine/Port.hpp
@@ -53,7 +53,7 @@ public:
*
* Preprocessor thread, poly is actually applied by apply_poly.
*/
- virtual void prepare_poly(uint32_t poly);
+ virtual bool prepare_poly(uint32_t poly);
/** Apply a new polyphony value.
*
@@ -61,7 +61,7 @@ public:
*
* \param poly Must be < the most recent value passed to prepare_poly.
*/
- virtual void apply_poly(Raul::Maid& maid, uint32_t poly);
+ virtual bool apply_poly(Raul::Maid& maid, uint32_t poly);
Buffer* buffer(uint32_t voice) const { return _buffers->at(voice); }