mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2024-12-22 14:02:29 -05:00
Remove stray comment
This commit is contained in:
parent
db1c89fa34
commit
195be39c6e
1 changed files with 0 additions and 1 deletions
|
@ -150,7 +150,6 @@ class ArrayBufferStream {
|
||||||
* @return {number} the next 32 bit integer in the stream
|
* @return {number} the next 32 bit integer in the stream
|
||||||
*/
|
*/
|
||||||
readInt32 () {
|
readInt32 () {
|
||||||
// const sliced = this.arrayBuffer.slice
|
|
||||||
let val;
|
let val;
|
||||||
if (this._position % 4 === 0) {
|
if (this._position % 4 === 0) {
|
||||||
val = new Int32Array(this.arrayBuffer, this._position, 1)[0];
|
val = new Int32Array(this.arrayBuffer, this._position, 1)[0];
|
||||||
|
|
Loading…
Reference in a new issue