1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

MIDI: Switch BytestreamMidiView for BytesOnGroup in a few places

This commit is contained in:
reuk 2025-03-06 17:17:06 +00:00
parent 2dd69dd0ad
commit fa1f8ed54e
No known key found for this signature in database
10 changed files with 50 additions and 49 deletions

View file

@ -123,7 +123,7 @@ public:
void handleIncomingMidiMessage (void*, const MidiMessage& msg) const
{
Conversion::toMidi1 (BytestreamMidiView (&msg), [&] (const View& view)
Conversion::toMidi1 ({ 0, msg.asSpan() }, [&] (const View& view)
{
dispatch.converter.convert (view, *callbackPtr);
});