cmProc4.c : Fixed bug in _cmScMatcherStoreResult() which failed to copy the

'muid' from the matched midi event to the cmScMatcherResult_t result record.
This commit is contained in:
Kevin Larke 2015-02-25 16:57:05 -08:00
parent 80b094d205
commit e540ee91f9

View File

@ -1349,6 +1349,7 @@ void _cmScMatcherStoreResult( cmScMatcher* p, unsigned locIdx, unsigned scEvtIdx
rp->locIdx = locIdx;
rp->scEvtIdx = scEvtIdx;
rp->mni = mp->mni;
rp->muid = mp->muid;
rp->smpIdx = mp->smpIdx;
rp->pitch = mp->pitch;
rp->vel = mp->vel;