From ce847ae626af8d08d5492d0ebc32270e21548605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albert=20Gr=C3=A4f?= <aggraef@gmail.com> Date: Tue, 14 Feb 2017 00:37:51 +0000 Subject: [PATCH] Get rid of the nested comment as advised in the comments. --- pd/src/s_midi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pd/src/s_midi.c b/pd/src/s_midi.c index 50f5ed7e9..565284a36 100644 --- a/pd/src/s_midi.c +++ b/pd/src/s_midi.c @@ -319,9 +319,9 @@ static void sys_dispatchnextmidiin( void) if (byte == 0xf8) { // AG: Not sure what the timebase for the right outlet is supposed // to be. I'm using msecs right now, which is in line with the other - // tempo-related objects such as metro. Uncomment the .001 factor to + // tempo-related objects such as metro. Multiply with .001 to // get seconds instead. - double timing = /*.001 * */clock_gettimesince(sys_midiinittime); + double timing = clock_gettimesince(sys_midiinittime); inmidi_clk(timing); } } -- GitLab