Kaynağa Gözat

cmMidiOsx.c : Fixed bug in cmMpDeviceSend() where the correct message

byte count was not calculated.
master
kevin 11 yıl önce
ebeveyn
işleme
87dd286b98
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme
  1. 3
    1
      osx/cmMidiOsx.c

+ 3
- 1
osx/cmMidiOsx.c Dosyayı Görüntüle

@@ -711,11 +711,13 @@ cmMpRC_t  cmMpDeviceSend( unsigned devIdx, unsigned portIdx, cmMidiByte_t status
711 711
 	mpl.numPackets	= 1;
712 712
 	
713 713
 	mpl.packet[0].timeStamp 	= 0;
714
-	mpl.packet[0].length		= byteCnt;
714
+	mpl.packet[0].length		= byteCnt+1;
715 715
 	mpl.packet[0].data[0]		= status;
716 716
 	mpl.packet[0].data[1]		= d0;
717 717
 	mpl.packet[0].data[2]		= d1;
718 718
 
719
+  //printf("%i %i %i %i\n",status,d0,d1,byteCnt);
720
+
719 721
 	if(( err = MIDISend( _cmMpRoot.outPortRef, pp->epr, &mpl)) != noErr )
720 722
 		return _cmMpError(&_cmMpRoot.err,kSysErrMpRC,err,"Send on device:%i port:%i failed.",devIdx,portIdx);
721 723
 	

Loading…
İptal
Kaydet