mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-12-21 06:25:09 -06:00
Rename services with the official interface names
This commit is contained in:
@@ -3,13 +3,13 @@ using System.Collections.Generic;
|
||||
|
||||
namespace Ryujinx.Core.OsHle.Services.Apm
|
||||
{
|
||||
class ServiceApm : IpcService
|
||||
class IManager : IpcService
|
||||
{
|
||||
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
||||
|
||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||
|
||||
public ServiceApm()
|
||||
public IManager()
|
||||
{
|
||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
Reference in New Issue
Block a user