Naming conventions
This commit is contained in:
parent
8faae5612d
commit
77972140a6
286 changed files with 11867 additions and 11845 deletions
|
@ -6,15 +6,15 @@ namespace Ryujinx.HLE.HOS.Services.Ns
|
|||
{
|
||||
class IApplicationManagerInterface : IpcService
|
||||
{
|
||||
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
||||
private Dictionary<int, ServiceProcessRequest> _commands;
|
||||
|
||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
||||
|
||||
private bool IsInitialized;
|
||||
private bool _isInitialized;
|
||||
|
||||
public IApplicationManagerInterface()
|
||||
{
|
||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
_commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue