From 38d692efe5a15908583153144c56c62d8280bd92 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Sun, 31 Jan 2021 11:24:28 +0100 Subject: [PATCH] early-access version 1400 --- README.md | 2 +- src/core/hle/service/sockets/bsd.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 841d3f54d..f710e8ce7 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 1399. +This is the source code for early-access 1400. ## Legal Notice diff --git a/src/core/hle/service/sockets/bsd.cpp b/src/core/hle/service/sockets/bsd.cpp index 9a5b32975..0b306b87a 100755 --- a/src/core/hle/service/sockets/bsd.cpp +++ b/src/core/hle/service/sockets/bsd.cpp @@ -421,11 +421,11 @@ void BSD::Close(Kernel::HLERequestContext& ctx) { } void BSD::EventFd(Kernel::HLERequestContext& ctx) { - LOG_WARNING(Service, "(STUBBED) called"); IPC::RequestParser rp{ctx}; - const s32 fd = rp.Pop(); + const u64 initval = rp.Pop(); + const u32 flags = rp.Pop(); - LOG_DEBUG(Service, "called. fd={}", fd); + LOG_WARNING(Service, "(STUBBED) called. initval={}, flags={}", initval, flags); BuildErrnoResponse(ctx, Errno::SUCCESS); }