1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix for MidiMessage::endOfTrack()

This commit is contained in:
jules 2017-05-02 12:04:50 +01:00
parent d7d1a9a99e
commit 171aa94215

View file

@ -855,7 +855,7 @@ MidiMessage MidiMessage::keySignatureMetaEvent (int numberOfSharpsOrFlats, bool
MidiMessage MidiMessage::endOfTrack() noexcept
{
return { 0xff, 0x2f };
return { 0xff, 0x2f, 0x00 };
}
//==============================================================================