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:
parent
0272a7cc6a
commit
9d973f0089
6 changed files with 20 additions and 20 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue