how did i mess up arpeggio!?

This commit is contained in:
Andy Sloane 2015-10-30 23:39:50 -07:00
commit 9f014f35c8

6
xm.js
View file

@ -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,