diff --git a/README.md b/README.md index ccfc4acfd..44ce6c16a 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2762. +This is the source code for early-access 2763. ## Legal Notice diff --git a/src/core/debugger/debugger.cpp b/src/core/debugger/debugger.cpp index 69b7d987d..8d64990ed 100755 --- a/src/core/debugger/debugger.cpp +++ b/src/core/debugger/debugger.cpp @@ -66,7 +66,7 @@ public: } 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; } @@ -75,7 +75,7 @@ public: } void WriteToClient(std::span 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 {