MIDI trace window: enable printing of new-ish MIDI tick message

This commit is contained in:
Paul Davis 2023-02-23 15:34:22 -07:00
parent 4c4f659c5d
commit ef14fec4ec

View File

@ -384,6 +384,9 @@ MidiTracer::tracer (Parser&, MIDI::byte* msg, size_t len, samplecnt_t now)
case 0xf8:
s += snprintf (&buf[s], bufsize, "%16s\n", "Clock");
break;
case 0xf9:
s += snprintf (&buf[s], bufsize, "%16s\n", "Tick");
break;
case 0xfa:
s += snprintf (&buf[s], bufsize, "%16s\n", "Start");
break;