From 7145356583dc12d33ecdb7964d34d5e1c7f7ad37 Mon Sep 17 00:00:00 2001 From: Oliver James Date: Fri, 27 Dec 2024 12:21:23 +0000 Subject: [PATCH] AudioProcessor: Update getNameForMidiNoteNumber docs for note ranges --- .../juce_audio_processors/processors/juce_AudioProcessor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_audio_processors/processors/juce_AudioProcessor.h b/modules/juce_audio_processors/processors/juce_AudioProcessor.h index 63f1ce52f6..57c69cf5bd 100644 --- a/modules/juce_audio_processors/processors/juce_AudioProcessor.h +++ b/modules/juce_audio_processors/processors/juce_AudioProcessor.h @@ -1334,8 +1334,8 @@ public: microtonal scales, or other mappings. @param note The MIDI note number for which the name is being requested. - This is an integer in the range [0, 127], representing the - full MIDI note range. + Some DAWs can request a note range outside of the standard + [0-127]. Ensure your plugin can handle this. @param midiChannel The MIDI channel associated with the note. This is a 1-based index (1-16). Use this parameter if your plugin provides channel-specific note mappings.