Browse Source

Make the tool to build! (setTimeStampToNow no longer exist and if no timestamp is set it will be automatically set to now)

Godzil 6 years ago
parent
commit
031a24164a
1 changed files with 1 additions and 2 deletions
  1. 1 2
      DHSendMIDI/main.m

+ 1 - 2
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)