MidiEventUtils::setCCValue() in Midi.hxx

Official support for: bluecataudio.com
Post Reply New Topic
RELATED
PRODUCTS

Post

A small problem with

Code: Select all

   
    uint8 setCCValue(const MidiEvent& evt)
    {
        return evt.byte1 & 0x7F;
    }
looks like it should probably be:

Code: Select all

    void setCCValue(MidiEvent& evt, uint8 v)
    {
        evt.byte2=v&0x7F;
    }

Kind regards

Digby

Post

Indeed! Thanks for the heads up!

Post Reply

Return to “Blue Cat Audio”