mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-10 15:02:06 -05:00
Switch back j->i
This commit is contained in:
parent
29887e24c9
commit
64b82f4dc2
1 changed files with 2 additions and 2 deletions
|
@ -350,8 +350,8 @@ Runtime.prototype._step = function () {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var inactiveThreads = this.sequencer.stepThreads(this.threads);
|
var inactiveThreads = this.sequencer.stepThreads(this.threads);
|
||||||
for (var j = 0; j < inactiveThreads.length; j++) {
|
for (var i = 0; i < inactiveThreads.length; i++) {
|
||||||
this._removeThread(inactiveThreads[j]);
|
this._removeThread(inactiveThreads[i]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue