Corrected the documentation

This commit is contained in:
Paul Ferrand 2019-12-03 22:44:14 +01:00
parent fae1e49e4a
commit 1d7e7855eb

View file

@ -127,8 +127,6 @@ struct Region {
* *
* @param channel * @param channel
* @param pitch * @param pitch
* @return true if the region should trigger on this event
* @return false
*/ */
void registerPitchWheel(int channel, int pitch) noexcept; void registerPitchWheel(int channel, int pitch) noexcept;
/** /**
@ -136,17 +134,12 @@ struct Region {
* *
* @param channel * @param channel
* @param aftertouch * @param aftertouch
* @return true if the region should trigger on this event
* @return false
*/ */
void registerAftertouch(int channel, uint8_t aftertouch) noexcept; void registerAftertouch(int channel, uint8_t aftertouch) noexcept;
/** /**
* @brief Register tempo * @brief Register tempo
* *
* @param channel * @param secondsPerQuarter
* @param aftertouch
* @return true if the region should trigger on this event
* @return false
*/ */
void registerTempo(float secondsPerQuarter) noexcept; void registerTempo(float secondsPerQuarter) noexcept;