From a39bae31331203698df87d965d4baf6d97a83231 Mon Sep 17 00:00:00 2001 From: kevin Date: Thu, 19 May 2016 13:03:34 -0400 Subject: [PATCH] cmDspPgmKrTimeLineLite.c : 'recall' button now triggers cross-fade. --- dsp/cmDspPgmKrTimeLineLite.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dsp/cmDspPgmKrTimeLineLite.c b/dsp/cmDspPgmKrTimeLineLite.c index af43c80..4b77060 100644 --- a/dsp/cmDspPgmKrTimeLineLite.c +++ b/dsp/cmDspPgmKrTimeLineLite.c @@ -207,9 +207,10 @@ cmDspRC_t _cmDspSysPgm_TimeLineLite(cmDspSysH_t h, void** userPtrPtr ) // ***** // active measure loc to xfad channel trigger - cmDspSysInstallCb( h, amp, "scloc", c0.achan, "trig", NULL ); // See Also: modp.sw ->achan.trig - - cmDspSysInstallCb( h, amp, "scloc", c1.achan, "trig", NULL ); + cmDspSysInstallCb( h, amp, "scloc",c0.achan, "trig", NULL ); // See Also: modp.sw ->achan.trig + cmDspSysInstallCb( h, amp, "scloc",c1.achan, "trig", NULL ); + cmDspSysInstallCb( h, recallBtn, "sym", c0.achan, "trig", NULL ); + cmDspSysInstallCb( h, recallBtn, "sym", c1.achan, "trig", NULL ); cmDspSysInstallCb( h, amp, "even", pre, "in", NULL ); // active meas output to printers cmDspSysInstallCb( h, amp, "dyn", prd, "in", NULL );