From 9f014f35c8d29549149cc878e02b8d7f56306a63 Mon Sep 17 00:00:00 2001 From: Andy Sloane Date: Fri, 30 Oct 2015 23:39:50 -0700 Subject: [PATCH] how did i mess up arpeggio!? --- xm.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/xm.js b/xm.js index 5d563dd..a5bab2c 100644 --- a/xm.js +++ b/xm.js @@ -634,10 +634,6 @@ function audio_cb(e) { } } -function eff_t0_0(ch, data) { // arpeggio - // nothing to do here, arpeggio will be done on ch.effectdata -} - function eff_t0_1(ch, data) { // pitch slide up if (data != 0) { ch.slideupspeed = data; @@ -752,7 +748,7 @@ function eff_unimplemented_t0(ch, data) { } var effects_t0 = [ // effect functions on tick 0 - eff_t0_0, + eff_t1_0, // 1, arpeggio is processed on all ticks eff_t0_1, eff_t0_2, eff_t0_3,