This commit is contained in:
Jordan Eldredge 2019-07-02 21:39:05 -07:00
parent 6ebcbec9d8
commit a8d83b4fa4

View file

@ -50,7 +50,7 @@ class MakiFile {
getNextNBytesDEPRECATED(length) {
const bytes = this._buffer.slice(this._i, this._i + length);
this._i += lengthn;
this._i += length;
return bytes;
}
}