This commit is contained in:
GabsPuNs
2026-06-05 16:05:55 -04:00
parent 77ad7e0e90
commit 22a1aa3a74
29 changed files with 160 additions and 1668 deletions

View File

@@ -95,7 +95,7 @@ int ByteArrayInputStream::read(byteArray b, unsigned int offset, unsigned int le
}
int k = min(length, count - pos);
XMemCpy(&b[offset], &buf[pos], k);
memcpy(&b[offset], &buf[pos], k);
// std::copy( buf->data+pos, buf->data+pos+k, b->data + offset ); // Or this instead?
pos += k;