early-access version 3465
This commit is contained in:
parent
7290086e2d
commit
587f4c8b2f
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3464.
|
This is the source code for early-access 3465.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ Result SendSyncRequest(Core::System& system, Handle handle) {
|
||||||
GetCurrentProcess(system.Kernel()).GetHandleTable().GetObject<KClientSession>(handle);
|
GetCurrentProcess(system.Kernel()).GetHandleTable().GetObject<KClientSession>(handle);
|
||||||
R_UNLESS(session.IsNotNull(), ResultInvalidHandle);
|
R_UNLESS(session.IsNotNull(), ResultInvalidHandle);
|
||||||
|
|
||||||
LOG_TRACE(Kernel_SVC, "called handle=0x{:08X}({})", handle, session->GetName());
|
LOG_TRACE(Kernel_SVC, "called handle=0x{:08X}", handle);
|
||||||
|
|
||||||
R_RETURN(session->SendSyncRequest());
|
R_RETURN(session->SendSyncRequest());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue