diff options
author | Tim E. Real <termtech@rogers.com> | 2010-01-27 02:12:11 +0000 |
---|---|---|
committer | Tim E. Real <termtech@rogers.com> | 2010-01-27 02:12:11 +0000 |
commit | 62051708610b46ee55df0d4fc82e945ff765a2cb (patch) | |
tree | cb5ef0678ba12e4fb2456e806e59c1f08f795b34 /muse/muse | |
parent | 80ffdaf7c30828cabd67537086a6cf0065f14d3a (diff) |
See ChangeLog
Diffstat (limited to 'muse/muse')
-rw-r--r-- | muse/muse/app.cpp | 2 | ||||
-rw-r--r-- | muse/muse/sync.cpp | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/muse/muse/app.cpp b/muse/muse/app.cpp index b5f75b43..ac06f3de 100644 --- a/muse/muse/app.cpp +++ b/muse/muse/app.cpp @@ -1518,7 +1518,7 @@ void MusE::loadProjectFile1(const QString& name, bool songTemplate, bool loadAll } } //else if (ex == "mid." || ex == "kar.") { - else if (mex == "mid." || mex == "kar.") { + else if (mex == "mid" || mex == "kar") { setConfigDefaults(); if (!importMidi(name, false)) setUntitledProject(); diff --git a/muse/muse/sync.cpp b/muse/muse/sync.cpp index 04c3e526..74ab1c41 100644 --- a/muse/muse/sync.cpp +++ b/muse/muse/sync.cpp @@ -27,7 +27,7 @@ int volatile curMidiSyncInPort = -1; // P3.3.26 -bool debugSync = false; +bool debugSync = true; int mtcType = 1; MTC mtcOffset; @@ -547,6 +547,9 @@ void MidiSeq::mtcInputQuarter(int port, unsigned char c) { static int hour, min, sec, frame; + // p3.3.28 + printf("MidiSeq::mtcInputQuarter c:%h\n", c); + int valL = c & 0xf; int valH = valL << 4; |