need to use nid to find channel to pause, and forgot to add i to channel_nid to get nid

master
Brian Stoner 2013-03-14 13:20:32 -04:00
parent c8047a2779
commit 91988b15b7
1 changed files with 6 additions and 6 deletions

View File

@ -294,14 +294,14 @@ if (window.Audio) (function () {
if (!note) return;
var instrumentNoteId = instrumentId + "" + note.id;
for(var i=0;i<channelInstrumentNoteIds.length;i++){
var nid = (channel_nid + 1) % channels.length;
var cId = channelInstrumentNoteIds[nid];
for(var i=0;i<channels.length;i++){
var nid = (i + channel_nid + 1) % channels.length;
var cId = channelInstrumentNoteIds[nid];
if(cId && cId == instrumentNoteId){
channels[i].pause();
channelInstrumentNoteIds[nid] = null;
return;
channels[nid].pause();
channelInstrumentNoteIds[nid] = null;
return;
}
}
};