early-access version 1522

main
pineappleEA 2021-03-16 20:50:20 +01:00
parent 8ccf8d6b8e
commit 001440b62e
2 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 1521. This is the source code for early-access 1522.
## Legal Notice ## Legal Notice

View File

@ -42,7 +42,9 @@ void BSD::PollWork::Execute(BSD* bsd) {
} }
void BSD::PollWork::Response(Kernel::HLERequestContext& ctx) { void BSD::PollWork::Response(Kernel::HLERequestContext& ctx) {
ctx.WriteBuffer(write_buffer); if (write_buffer.size() > 0) {
ctx.WriteBuffer(write_buffer);
}
IPC::ResponseBuilder rb{ctx, 4}; IPC::ResponseBuilder rb{ctx, 4};
rb.Push(RESULT_SUCCESS); rb.Push(RESULT_SUCCESS);
@ -55,7 +57,9 @@ void BSD::AcceptWork::Execute(BSD* bsd) {
} }
void BSD::AcceptWork::Response(Kernel::HLERequestContext& ctx) { void BSD::AcceptWork::Response(Kernel::HLERequestContext& ctx) {
ctx.WriteBuffer(write_buffer); if (write_buffer.size() > 0) {
ctx.WriteBuffer(write_buffer);
}
IPC::ResponseBuilder rb{ctx, 5}; IPC::ResponseBuilder rb{ctx, 5};
rb.Push(RESULT_SUCCESS); rb.Push(RESULT_SUCCESS);