Browse Source

cmDspPgmKrTimeLineLite.c : 'recall' button now triggers cross-fade.

master
kevin 8 years ago
parent
commit
a39bae3133
1 changed files with 4 additions and 3 deletions
  1. 4
    3
      dsp/cmDspPgmKrTimeLineLite.c

+ 4
- 3
dsp/cmDspPgmKrTimeLineLite.c View File

@@ -207,9 +207,10 @@ cmDspRC_t _cmDspSysPgm_TimeLineLite(cmDspSysH_t h, void** userPtrPtr )
207 207
   // *****
208 208
 
209 209
   // active measure loc to xfad channel trigger
210
-  cmDspSysInstallCb( h, amp,    "scloc",  c0.achan,   "trig", NULL );  // See Also: modp.sw ->achan.trig
211
-
212
-  cmDspSysInstallCb( h, amp,    "scloc",  c1.achan,   "trig", NULL );
210
+  cmDspSysInstallCb( h, amp,       "scloc",c0.achan, "trig", NULL );  // See Also: modp.sw ->achan.trig
211
+  cmDspSysInstallCb( h, amp,       "scloc",c1.achan, "trig", NULL );
212
+  cmDspSysInstallCb( h, recallBtn, "sym",  c0.achan, "trig", NULL ); 
213
+  cmDspSysInstallCb( h, recallBtn, "sym",  c1.achan, "trig", NULL );
213 214
 
214 215
   cmDspSysInstallCb( h, amp,    "even",   pre,        "in",   NULL );  // active meas output to printers
215 216
   cmDspSysInstallCb( h, amp,    "dyn",    prd,        "in",   NULL );

Loading…
Cancel
Save