Skip to content

Commit

Permalink
#148 cut works on all columns now
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesholdenmusic committed May 21, 2024
1 parent 8194879 commit 825ba87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion note_blocks/seq.note.tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ function delete_selection(){
}else{
for(i=sel_sy;i<=sel_ey;i++){
for(var tx=0;tx<=v_list.length;tx++){
for(var tx2=0;tx2<2;tx2++){
for(var tx2=0;tx2<UNIVERSAL_COLUMNS;tx2++){
if(((tx==sel_sx)&&(tx2>=sel_sx2)||(tx>sel_sx))){
if(((tx==sel_ex)&&(tx2<=sel_ex2))||(tx<sel_ex)){
voice_data_buffer.poke(1, MAX_DATA*v_list[tx]+1+pattern_offs[tx]+UNIVERSAL_COLUMNS*i+tx2,0);
Expand Down

0 comments on commit 825ba87

Please sign in to comment.