This commit is contained in:
Lordmau5 2018-07-12 01:05:36 +00:00 committed by GitHub
commit 08e98b212a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,6 +25,7 @@ namespace Ryujinx.HLE.OsHle.Services.Am
{ 13, SetFocusHandlingMode }, { 13, SetFocusHandlingMode },
{ 14, SetRestartMessageEnabled }, { 14, SetRestartMessageEnabled },
{ 16, SetOutOfFocusSuspendingEnabled }, { 16, SetOutOfFocusSuspendingEnabled },
{ 40, CreateManagedDisplayLayer },
{ 50, SetHandlesRequestToDisplay } { 50, SetHandlesRequestToDisplay }
}; };
@ -105,6 +106,15 @@ namespace Ryujinx.HLE.OsHle.Services.Am
return 0; return 0;
} }
public long CreateManagedDisplayLayer(ServiceCtx Context)
{
Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
Context.ResponseData.Write(1L);
return 0;
}
public long SetHandlesRequestToDisplay(ServiceCtx Context) public long SetHandlesRequestToDisplay(ServiceCtx Context)
{ {
bool Enable = Context.RequestData.ReadByte() != 0 ? true : false; bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;