From e540ee91f9871ca0e078697819f57d27fcae576f Mon Sep 17 00:00:00 2001 From: Kevin Larke Date: Wed, 25 Feb 2015 16:57:05 -0800 Subject: [PATCH] cmProc4.c : Fixed bug in _cmScMatcherStoreResult() which failed to copy the 'muid' from the matched midi event to the cmScMatcherResult_t result record. --- cmProc4.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cmProc4.c b/cmProc4.c index e27dbf0..bc7a8e7 100644 --- a/cmProc4.c +++ b/cmProc4.c @@ -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;