summaryrefslogtreecommitdiff
path: root/muse/muse/sync.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'muse/muse/sync.cpp')
-rw-r--r--muse/muse/sync.cpp5
1 files changed, 4 insertions, 1 deletions
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;