The way to Unity, pt.2 (#1671)

This commit is contained in:
Daniel R. 2024-12-06 22:04:36 +01:00 committed by GitHub
parent 357b7829c3
commit 7ffa581d4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 311 additions and 28 deletions

View file

@ -15,6 +15,7 @@ s64 Logger::write(const void* buf, size_t nbytes) {
log(static_cast<const char*>(buf), nbytes);
return nbytes;
}
size_t Logger::writev(const Libraries::Kernel::SceKernelIovec* iov, int iovcnt) {
for (int i = 0; i < iovcnt; i++) {
log(static_cast<const char*>(iov[i].iov_base), iov[i].iov_len);