Merge pull request #5401 from xperia64/fix_pipe_read_size

Fix ReadPipeIfPossible Size
This commit is contained in:
Pengfei Zhu 2020-06-11 22:37:50 +08:00 committed by GitHub
commit 9b20ff0369
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -161,7 +161,7 @@ void DSP_DSP::ReadPipeIfPossible(Kernel::HLERequestContext& ctx) {
IPC::RequestBuilder rb = rp.MakeBuilder(2, 2);
rb.Push(RESULT_SUCCESS);
rb.Push<u16>(pipe_readable_size);
rb.Push<u16>(pipe_buffer.size());
rb.PushStaticBuffer(std::move(pipe_buffer), 0);
LOG_DEBUG(Service_DSP, "channel={}, peer={}, size=0x{:04X}, pipe_readable_size=0x{:04X}",