From 1d7e7855eb0d326276d9bfdf80ea4dd165bf7694 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Tue, 3 Dec 2019 22:44:14 +0100 Subject: [PATCH] Corrected the documentation --- src/sfizz/Region.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/sfizz/Region.h b/src/sfizz/Region.h index 9a697e15..1259cfa7 100644 --- a/src/sfizz/Region.h +++ b/src/sfizz/Region.h @@ -127,8 +127,6 @@ struct Region { * * @param channel * @param pitch - * @return true if the region should trigger on this event - * @return false */ void registerPitchWheel(int channel, int pitch) noexcept; /** @@ -136,17 +134,12 @@ struct Region { * * @param channel * @param aftertouch - * @return true if the region should trigger on this event - * @return false */ void registerAftertouch(int channel, uint8_t aftertouch) noexcept; /** * @brief Register tempo * - * @param channel - * @param aftertouch - * @return true if the region should trigger on this event - * @return false + * @param secondsPerQuarter */ void registerTempo(float secondsPerQuarter) noexcept;