early-access version 2762

main
pineappleEA 2022-06-07 06:51:18 +02:00
parent 93e838f978
commit c1d5f43b2e
2 changed files with 10 additions and 9 deletions

View File

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

View File

@ -20,15 +20,16 @@ template <typename Readable, typename Buffer, typename Callback>
static void AsyncReceiveInto(Readable& r, Buffer& buffer, Callback&& c) { static void AsyncReceiveInto(Readable& r, Buffer& buffer, Callback&& c) {
static_assert(std::is_trivial_v<Buffer>); static_assert(std::is_trivial_v<Buffer>);
auto boost_buffer{boost::asio::buffer(&buffer, sizeof(Buffer))}; auto boost_buffer{boost::asio::buffer(&buffer, sizeof(Buffer))};
r.async_read_some(boost_buffer, [&](const boost::system::error_code& error, size_t bytes_read) { r.async_read_some(
if (!error.failed()) { boost_buffer, [&, c](const boost::system::error_code& error, size_t bytes_read) {
const u8* buffer_start = reinterpret_cast<const u8*>(&buffer); if (!error.failed()) {
std::span<const u8> received_data{buffer_start, buffer_start + bytes_read}; const u8* buffer_start = reinterpret_cast<const u8*>(&buffer);
c(received_data); std::span<const u8> received_data{buffer_start, buffer_start + bytes_read};
} c(received_data);
}
AsyncReceiveInto(r, buffer, c); AsyncReceiveInto(r, buffer, c);
}); });
} }
template <typename Readable, typename Buffer> template <typename Readable, typename Buffer>