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 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;