Implement AppletOE UnlockExit

This commit is contained in:
Rygnus 2018-07-17 16:28:31 +01:00 committed by GitHub
parent 5d698a7d8d
commit 6caa41f71f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,7 @@ namespace Ryujinx.HLE.OsHle.Services.Am
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 1, LockExit },
{ 2, UnlockExit },
{ 9, GetLibraryAppletLaunchableEvent },
{ 10, SetScreenShotPermission },
{ 11, SetOperationModeChangedNotification },
@ -36,6 +37,11 @@ namespace Ryujinx.HLE.OsHle.Services.Am
return 0;
}
public long UnlockExit(ServiceCtx Context)
{
return 0;
}
public long GetLibraryAppletLaunchableEvent(ServiceCtx Context)
{
LaunchableEvent.WaitEvent.Set();
@ -114,4 +120,4 @@ namespace Ryujinx.HLE.OsHle.Services.Am
return 0;
}
}
}
}