hle_ipc: Rename ReadBufferSpan to ReadBuffer

This commit is contained in:
ameerj
2022-12-25 14:31:53 -05:00
parent 59c0f85407
commit a1490d77ac
33 changed files with 97 additions and 97 deletions

View File

@ -1124,7 +1124,7 @@ void IStorageAccessor::Write(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
const u64 offset{rp.Pop<u64>()};
const auto data{ctx.ReadBufferSpan()};
const auto data{ctx.ReadBuffer()};
const std::size_t size{std::min<u64>(data.size(), backing.GetSize() - offset)};
LOG_DEBUG(Service_AM, "called, offset={}, size={}", offset, size);