Browse Source

Fix enum documentation in juce_MPEInstrument.h

tags/2021-05-28
Noah Dayan 7 years ago
parent
commit
98f1998477
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      modules/juce_audio_basics/mpe/juce_MPEInstrument.h

+ 4
- 4
modules/juce_audio_basics/mpe/juce_MPEInstrument.h View File

@@ -105,10 +105,10 @@ public:
*/
enum TrackingMode
{
lastNotePlayedOnChannel, //! The most recent note on the channel that is still played (key down and/or sustained)
lowestNoteOnChannel, //! The lowest note (by initialNote) on the channel with the note key still down
highestNoteOnChannel, //! The highest note (by initialNote) on the channel with the note key still down
allNotesOnChannel //! All notes on the channel (key down and/or sustained)
lastNotePlayedOnChannel, /**< The most recent note on the channel that is still played (key down and/or sustained). */
lowestNoteOnChannel, /**< The lowest note (by initialNote) on the channel with the note key still down. */
highestNoteOnChannel, /**< The highest note (by initialNote) on the channel with the note key still down. */
allNotesOnChannel /**< All notes on the channel (key down and/or sustained). */
};
/** Set the MPE tracking mode for the pressure dimension. */


Loading…
Cancel
Save