Browse Source

Fixed a typo in a comment.

tags/2021-05-28
jules 10 years ago
parent
commit
b9261dd8a9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/juce_audio_basics/midi/juce_MidiMessage.h

+ 2
- 2
modules/juce_audio_basics/midi/juce_MidiMessage.h View File

@@ -238,7 +238,7 @@ public:
@param channel the midi channel, in the range 1 to 16
@param noteNumber the key number, 0 to 127
@param velocity in the range 0 to 127
@param velocity in the range 0 to 1.0
@see isNoteOff
*/
static MidiMessage noteOff (int channel, int noteNumber, float velocity) noexcept;
@@ -247,7 +247,7 @@ public:
@param channel the midi channel, in the range 1 to 16
@param noteNumber the key number, 0 to 127
@param velocity in the range 0 to 1
@param velocity in the range 0 to 127
@see isNoteOff
*/
static MidiMessage noteOff (int channel, int noteNumber, uint8 velocity) noexcept;


Loading…
Cancel
Save