Fix some format and logger typos

This commit is contained in:
Megamouse 2026-05-30 23:46:06 +02:00
parent 1bd246d2d3
commit 375eb21c07
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ namespace utils
}
else
{
result.push_back(fmt::format("rpcs3@0xp", pointer));
result.push_back(fmt::format("rpcs3@0x%p", pointer));
}
}

View File

@ -1304,7 +1304,7 @@ error_code sys_fs_write(ppu_thread& ppu, u32 fd, vm::cptr<void> buf, u64 nbytes,
if (file->type != lv2_file_type::regular)
{
sys_fs.error("%s type: Writing %u bytes to FD=%d (path=%s)", file->type, nbytes, file->name.data());
sys_fs.error("%s type: Writing %u bytes to FD=%d (path=%s)", file->type, nbytes, fd, file->name.data());
}
if (file->mp.read_only)