X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fmidi%2B%2B2%2Fmmc.cc;h=b49585ccd2d68cf88edf5690282693e605bc8857;hb=c0376fe7b3eae7dd167a37b2d68087e0cda38832;hp=c34304dd0848c4ebe95bfc5105585da38d0e8eb7;hpb=7df663acf2fad9b7d21ead84b393da006ed57b97;p=ardour.git diff --git a/libs/midi++2/mmc.cc b/libs/midi++2/mmc.cc index c34304dd08..b49585ccd2 100644 --- a/libs/midi++2/mmc.cc +++ b/libs/midi++2/mmc.cc @@ -710,7 +710,7 @@ MachineControlCommand::fill_buffer (MachineControl* mmc, MIDI::byte* b) const if (_command == MachineControl::cmdLocate) { *b++ = 0x6; // byte count *b++ = 0x1; // "TARGET" subcommand - *b++ = _time.hours & 0xff; + *b++ = _time.hours & 0x7f; *b++ = _time.minutes; *b++ = _time.seconds; *b++ = _time.frames;