early-access version 1399

This commit is contained in:
pineappleEA
2021-01-31 09:06:28 +01:00
부모 27810474b2
커밋 16af47109c
2개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

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

파일 보기

@@ -263,11 +263,15 @@ void BSD::GetSockOpt(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called. fd={} level={} optname=0x{:x}", fd, level, optname);
std::vector<u8> optval(ctx.GetWriteBufferSize());
ctx.WriteBuffer(optval);
IPC::ResponseBuilder rb{ctx, 5};
rb.Push(RESULT_SUCCESS);
rb.Push<s32>(-1);
rb.PushEnum(Errno::NOTCONN);
rb.Push<u32>(0);
rb.Push<u32>(static_cast<u32>(optval.size()));
}
void BSD::Listen(Kernel::HLERequestContext& ctx) {