summaryrefslogtreecommitdiff
path: root/libs/midi++2/mtc.cc
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2013-07-25 07:19:51 +0100
committerJohn Emmas <johne53@tiscali.co.uk>2013-07-25 07:19:51 +0100
commit369c0e4a6692f7f5fd356783be7da773e452cb34 (patch)
treec73adc2054be6f01721ed8d11869e8dc2b4b953a /libs/midi++2/mtc.cc
parentb8109ef87ef9d5332fa16d246b6cf5a6576fe363 (diff)
'libs/midi++2' - Modify to be buildable with MSVC
Diffstat (limited to 'libs/midi++2/mtc.cc')
-rw-r--r--libs/midi++2/mtc.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/midi++2/mtc.cc b/libs/midi++2/mtc.cc
index affe65ec68..3c58b6684f 100644
--- a/libs/midi++2/mtc.cc
+++ b/libs/midi++2/mtc.cc
@@ -36,7 +36,7 @@ using namespace MIDI;
#undef DEBUG_MTC
bool
-Parser::possible_mtc (byte *sysex_buf, size_t msglen)
+Parser::possible_mtc (MIDI::byte *sysex_buf, size_t msglen)
{
byte fake_mtc_time[5];
@@ -91,7 +91,7 @@ Parser::reset_mtc_state ()
}
void
-Parser::process_mtc_quarter_frame (byte *msg)
+Parser::process_mtc_quarter_frame (MIDI::byte *msg)
{
int which_quarter_frame = (msg[1] & 0xf0) >> 4;