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

Fixes for CoreAudio, MidiFile, TextEditor, Tooltip.

This commit is contained in:
jules 2012-02-20 12:04:49 +00:00
parent 0272a7cc6a
commit 9d973f0089
6 changed files with 20 additions and 20 deletions

View file

@ -401,7 +401,7 @@ void MidiFile::writeTrack (OutputStream& mainOut, const int trackNum)
++data;
--dataSize;
}
else if ((statusByte & 0xf0) == 0xf0) // Write sysex message with length bytes.
else if (statusByte == 0xf0) // Write sysex message with length bytes.
{
out.writeByte ((char) statusByte);