mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 07:39:45 -06:00
IOS/ES: Log content reads for debugging
We log FS reads already, might as well log ES content reads.
This commit is contained in:
@ -110,6 +110,8 @@ IPCReply ESDevice::ReadContent(u32 uid, const IOCtlVRequest& request)
|
|||||||
const u32 size = request.io_vectors[0].size;
|
const u32 size = request.io_vectors[0].size;
|
||||||
const u32 addr = request.io_vectors[0].address;
|
const u32 addr = request.io_vectors[0].address;
|
||||||
|
|
||||||
|
INFO_LOG_FMT(IOS_ES, "ReadContent(uid={:#x}, cfd={}, size={}, addr={:08x})", uid, cfd, size,
|
||||||
|
addr);
|
||||||
return IPCReply(ReadContent(cfd, Memory::GetPointer(addr), size, uid));
|
return IPCReply(ReadContent(cfd, Memory::GetPointer(addr), size, uid));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user