Skip to content
Snippets Groups Projects
Commit ce847ae6 authored by Albert Gräf's avatar Albert Gräf
Browse files

Get rid of the nested comment as advised in the comments.

parent 162fd02f
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment