From ba03a8f996cb6048f293ec084168388c02957a08 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Sat, 19 Sep 2020 16:19:18 +0200 Subject: [PATCH] Make the methods initCc and initHdcc private --- src/sfizz/Synth.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sfizz/Synth.h b/src/sfizz/Synth.h index 278fe312..c308666e 100644 --- a/src/sfizz/Synth.h +++ b/src/sfizz/Synth.h @@ -369,6 +369,7 @@ public: * @param normValue the normalized cc value, in domain 0 to 1 */ void hdcc(int delay, int ccNumber, float normValue) noexcept; +private: /** * @brief Set the initial value of a controller and send it to the synth * @@ -383,6 +384,7 @@ public: * @param normValue the normalized cc value, in domain 0 to 1 */ void initHdcc(int ccNumber, float normValue) noexcept; +public: /** * @brief Get the initial value of a controller under the current instrument *