early-access version 2763

main
pineappleEA 2022-06-08 00:12:09 +02:00
parent c1d5f43b2e
commit ec1190baaa
2 changed files with 3 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 2762. This is the source code for early-access 2763.
## Legal Notice ## Legal Notice

View File

@ -66,7 +66,7 @@ public:
} }
stopped = true; stopped = true;
signal_pipe.write_some(boost::asio::buffer(&thread, sizeof(thread))); boost::asio::write(signal_pipe, boost::asio::buffer(&thread, sizeof(thread)));
return true; return true;
} }
@ -75,7 +75,7 @@ public:
} }
void WriteToClient(std::span<const u8> data) override { void WriteToClient(std::span<const u8> data) override {
client_socket.write_some(boost::asio::buffer(data.data(), data.size_bytes())); boost::asio::write(client_socket, boost::asio::buffer(data.data(), data.size_bytes()));
} }
void SetActiveThread(Kernel::KThread* thread) override { void SetActiveThread(Kernel::KThread* thread) override {