Implement AppletOE UnlockExit
This commit is contained in:
parent
5d698a7d8d
commit
6caa41f71f
1 changed files with 7 additions and 1 deletions
|
@ -18,6 +18,7 @@ namespace Ryujinx.HLE.OsHle.Services.Am
|
||||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||||
{
|
{
|
||||||
{ 1, LockExit },
|
{ 1, LockExit },
|
||||||
|
{ 2, UnlockExit },
|
||||||
{ 9, GetLibraryAppletLaunchableEvent },
|
{ 9, GetLibraryAppletLaunchableEvent },
|
||||||
{ 10, SetScreenShotPermission },
|
{ 10, SetScreenShotPermission },
|
||||||
{ 11, SetOperationModeChangedNotification },
|
{ 11, SetOperationModeChangedNotification },
|
||||||
|
@ -36,6 +37,11 @@ namespace Ryujinx.HLE.OsHle.Services.Am
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long UnlockExit(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
public long GetLibraryAppletLaunchableEvent(ServiceCtx Context)
|
public long GetLibraryAppletLaunchableEvent(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
LaunchableEvent.WaitEvent.Set();
|
LaunchableEvent.WaitEvent.Set();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue