summaryrefslogtreecommitdiff
path: root/muse2/muse/midifile.cpp
diff options
context:
space:
mode:
authorTim E. Real <termtech@rogers.com>2012-11-12 04:49:31 +0000
committerTim E. Real <termtech@rogers.com>2012-11-12 04:49:31 +0000
commitbe1005a6031861b91e1a2df33f62e1c5a0a2aeb6 (patch)
tree89152909549c7dd624f4748f394c3adbcbf65b86 /muse2/muse/midifile.cpp
parent31f618e5461553bd7836677f944acfa233e5ae3c (diff)
Finished Aftertouch controllers
Feature: Piano KB / drum list show coloured dots when per-pitch controllers exist / have data.
Diffstat (limited to 'muse2/muse/midifile.cpp')
-rw-r--r--muse2/muse/midifile.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/muse2/muse/midifile.cpp b/muse2/muse/midifile.cpp
index 6f92d0f5..39b2e51d 100644
--- a/muse2/muse/midifile.cpp
+++ b/muse2/muse/midifile.cpp
@@ -699,8 +699,7 @@ bool MidiFile::write()
writeShort(MusEGlobal::config.smfFormat);
if (MusEGlobal::config.smfFormat == 0) {
// DELETETHIS 30
- /*
- //writeShort(1); // Removed. Bug tracker 3293339
+ /* // REMOVE Tim.
MidiFileTrack dst;
for (iMidiFileTrack i = _tracks->begin(); i != _tracks->end(); ++i) {
MPEventList* sl = &((*i)->events);
@@ -713,8 +712,8 @@ bool MidiFile::write()
// Nope. Didn't help. Now that it's a single MidiFileTrack, try skipping this section altogether...
// Yes that appears to have fixed it. Weird. What's the difference - the local 'dst' variable ?
// Or are there still lurking problems, or something more fundamentally wrong with Event or MPEvent?
- printf("MidiFile::write adding event to dst:\n"); // REMOVE Tim.
- ie->dump(); // REMOVE Tim.
+ printf("MidiFile::write adding event to dst:\n");
+ ie->dump();
dst.events.add(*ie);
}
}