This commit is contained in:
Elijah 2023-12-10 15:13:03 -05:00
parent b6627b9a51
commit 5557dc1750

View file

@ -92,8 +92,8 @@ export default class VM {
this.#currentChunk = Buffer.alloc(this.#currentChunkSize); this.#currentChunk = Buffer.alloc(this.#currentChunkSize);
data.copy(this.#currentChunk, 0, 4); data.copy(this.#currentChunk, 0, 4);
this.#currentChunkOffset = data.length - 4; this.#currentChunkOffset = data.length - 4;
} if (this.#currentChunkSize > this.#currentChunk!.length) return;
if (this.#currentChunkSize > this.#currentChunk!.length) { } else if (this.#currentChunkSize > this.#currentChunk!.length) {
data.copy(this.#currentChunk!, this.#currentChunkOffset); data.copy(this.#currentChunk!, this.#currentChunkOffset);
this.#currentChunkOffset += data.length; this.#currentChunkOffset += data.length;
return; return;