| 412 | } |
| 413 | |
| 414 | const String getMidiChannel(const MidiMessage &m) |
| 415 | { |
| 416 | if (m.getChannel() > 0) |
| 417 | { |
| 418 | return (String::formatted (" Ch:[%2d]", m.getChannel())); |
| 419 | } |
| 420 | |
| 421 | return (" Ch:[--]"); |
| 422 | } |
| 423 | |
| 424 | const String getMidiValue(const MidiMessage &m) |
| 425 | { |
no test coverage detected