Fix #2
This commit is contained in:
parent
eb4e7e644d
commit
fc9590a73e
1 changed files with 4 additions and 0 deletions
|
@ -7,6 +7,8 @@ namespace Ryujinx.HLE.HOS.Services.Acc
|
||||||
{
|
{
|
||||||
class IManagerForApplication : IpcService
|
class IManagerForApplication : IpcService
|
||||||
{
|
{
|
||||||
|
private UInt128 Uuid;
|
||||||
|
|
||||||
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
||||||
|
|
||||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||||
|
@ -18,6 +20,8 @@ namespace Ryujinx.HLE.HOS.Services.Acc
|
||||||
{ 0, CheckAvailability },
|
{ 0, CheckAvailability },
|
||||||
{ 1, GetAccountId }
|
{ 1, GetAccountId }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this.Uuid = Uuid;
|
||||||
}
|
}
|
||||||
|
|
||||||
// CheckAvailability()
|
// CheckAvailability()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue