Page 1 of 1

MIDI NoteDelay and NoteCut not received

Posted: Sun Oct 23, 2022 7:47 pm
by UNZ
In my native machine i'm capturing midi input via the following:
virtual void MidiControlChange(int const ctrl, int const channel, int const value)

this works for the following columns in PXP:
-MIDI Pitch Wheel
-MIDI CC

It does not work (function is not called) for:
-MIDI Note Delay
-MIDI Note Cut

virtual void MidiNote(int const channel, int const value, int const velocity)
obviously doesn't have these values either.

Yet Qsamo and PVST are somehow able to read these values. how?

Re: MIDI NoteDelay and NoteCut not received

Posted: Sun Oct 23, 2022 9:11 pm
by UNZ
never mind, these values are not supposed to be sent to the machine, pxp handles the delay and the cut by itself and just sends the note later / note off earlier. doh... :)