From 4b60819a35b66b469a6c737d2680d94cdc2a39f6 Mon Sep 17 00:00:00 2001 From: kevin Date: Sat, 28 Sep 2013 12:29:49 -0700 Subject: [PATCH] cmAudDsp.c: Added a text output to delinate the audio and MIDI devices in when printing the device report in cmAudDspReceiveClientMsg(). --- cmAudDsp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmAudDsp.c b/cmAudDsp.c index 69f7f0c..fdbff93 100644 --- a/cmAudDsp.c +++ b/cmAudDsp.c @@ -1292,7 +1292,9 @@ cmAdRC_t cmAudDspReceiveClientMsg( cmAdH_t h, unsigned msgByteCnt, const void* m switch( m->selId ) { case kDevReportDuiId: + cmRptPrintf(p->err.rpt,"\nAUDIO DEVICES\n"); cmApReport(p->err.rpt); + cmRptPrintf(p->err.rpt,"\nMIDI DEVICES\n"); cmMpReport(p->err.rpt); break;