From 3615a70cae3f89197fe185dfc5d0a47fa42151d9 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 4 Dec 2018 22:52:39 -0200 Subject: Revert "Adjust naming conventions and general refactoring in HLE Project (#490)" (#526) This reverts commit 85dbb9559ad317a657dafd24da27fec4b3f5250f. --- Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs') diff --git a/Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs b/Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs index 4b2de6b3..77710f76 100644 --- a/Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs +++ b/Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.FileSystem; @@ -6,24 +7,24 @@ namespace Ryujinx.HLE.HOS.Services.Lr { class ILocationResolverManager : IpcService { - private Dictionary _commands; + private Dictionary m_Commands; - public override IReadOnlyDictionary Commands => _commands; + public override IReadOnlyDictionary Commands => m_Commands; public ILocationResolverManager() { - _commands = new Dictionary + m_Commands = new Dictionary() { - { 0, OpenLocationResolver } + { 0, OpenLocationResolver }, }; } // OpenLocationResolver() - private long OpenLocationResolver(ServiceCtx context) + private long OpenLocationResolver(ServiceCtx Context) { - StorageId storageId = (StorageId)context.RequestData.ReadByte(); + StorageId StorageId = (StorageId)Context.RequestData.ReadByte(); - MakeObject(context, new ILocationResolver(storageId)); + MakeObject(Context, new ILocationResolver(StorageId)); return 0; } -- cgit v1.2.3