From 031a24164a0c39f64b159f5786d3289c8a35b657 Mon Sep 17 00:00:00 2001 From: Godzil Date: Wed, 27 Dec 2017 02:31:35 +0100 Subject: [PATCH] Make the tool to build! (setTimeStampToNow no longer exist and if no timestamp is set it will be automatically set to now) --- DHSendMIDI/main.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/DHSendMIDI/main.m b/DHSendMIDI/main.m index 17fec31..d64b16a 100644 --- a/DHSendMIDI/main.m +++ b/DHSendMIDI/main.m @@ -135,7 +135,6 @@ int main(int argc, char * const *argv) // Create the message SMVoiceMessage *message = [[SMVoiceMessage alloc] initWithTimeStamp:0 statusByte:messageStatus]; - [message setTimeStampToNow]; [message setChannel:channel]; const NSUInteger requiredLength = message.otherDataLength; @@ -193,7 +192,7 @@ int main(int argc, char * const *argv) void printVersion(void) { - printf("DHSendMIDI 1.0\nCopyright 2013, Douglas Heriot\nhttps://github.com/DouglasHeriot/DHSendMIDI\n"); + printf("DHSendMIDI 1.0\nCopyright 2013, Douglas Heriot\nCopyright 2017, Manoel Trapier, https://github.com/DouglasHeriot/DHSendMIDI\n"); } void printHelp(void)