Skip to content

Commit

Permalink
Fix #35: Remove spurious debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
jofemodo committed Mar 19, 2021
1 parent bb5e19c commit d852c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zynmidirouter.c
Expand Up @@ -710,7 +710,7 @@ int zmop_chan_set_flag_droppc(int ch, uint8_t flag) {
}
if (flag) zmops[ZMOP_CH0 + ch].flags|=(uint32_t)FLAG_ZMOP_DROPPC;
else zmops[ZMOP_CH0 + ch].flags&=~(uint32_t)FLAG_ZMOP_DROPPC;
fprintf (stderr, "ZynMidiRouter: ZMOPS flags for chan (%d) => %x\n", ch, zmops[ZMOP_CH0 + ch].flags);
//fprintf (stderr, "ZynMidiRouter: ZMOPS flags for chan (%d) => %x\n", ch, zmops[ZMOP_CH0 + ch].flags);
return 1;
}

Expand Down

0 comments on commit d852c8f

Please sign in to comment.