Stub GetLastOpenedUser

This commit is contained in:
Melissa Goad 2018-04-19 00:56:56 -05:00
parent 59e4aaf29a
commit 952af074c0

View file

@ -15,6 +15,7 @@ namespace Ryujinx.Core.OsHle.Services.Acc
{ {
{ 0, GetUserCount }, { 0, GetUserCount },
{ 3, ListOpenUsers }, { 3, ListOpenUsers },
{ 4, GetLastOpenedUser },
{ 5, GetProfile }, { 5, GetProfile },
{ 100, InitializeApplicationInfo }, { 100, InitializeApplicationInfo },
{ 101, GetBaasAccountManagerForApplication } { 101, GetBaasAccountManagerForApplication }
@ -37,6 +38,13 @@ namespace Ryujinx.Core.OsHle.Services.Acc
return 0; return 0;
} }
public long GetLastOpenedUser(ServiceCtx Context)
{
Logging.Stub(LogClass.ServiceAcc, "Stubbed");
return 0;
}
public long GetProfile(ServiceCtx Context) public long GetProfile(ServiceCtx Context)
{ {
MakeObject(Context, new IProfile()); MakeObject(Context, new IProfile());