diff options
author | gdkchan <gab.dark.100@gmail.com> | 2018-12-04 22:52:39 -0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-04 22:52:39 -0200 |
commit | 3615a70cae3f89197fe185dfc5d0a47fa42151d9 (patch) | |
tree | 8e4737422fba15199c1a6ce7c6345996c0e907b5 /Ryujinx.HLE/FileSystem/Content/LocationHelper.cs | |
parent | 85dbb9559ad317a657dafd24da27fec4b3f5250f (diff) |
Revert "Adjust naming conventions and general refactoring in HLE Project (#490)" (#526)
This reverts commit 85dbb9559ad317a657dafd24da27fec4b3f5250f.
Diffstat (limited to 'Ryujinx.HLE/FileSystem/Content/LocationHelper.cs')
-rw-r--r-- | Ryujinx.HLE/FileSystem/Content/LocationHelper.cs | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/Ryujinx.HLE/FileSystem/Content/LocationHelper.cs b/Ryujinx.HLE/FileSystem/Content/LocationHelper.cs index df3f5ad6..75b59431 100644 --- a/Ryujinx.HLE/FileSystem/Content/LocationHelper.cs +++ b/Ryujinx.HLE/FileSystem/Content/LocationHelper.cs @@ -7,30 +7,30 @@ namespace Ryujinx.HLE.FileSystem.Content { internal static class LocationHelper { - public static string GetRealPath(VirtualFileSystem fileSystem, string switchContentPath) + public static string GetRealPath(VirtualFileSystem FileSystem, string SwitchContentPath) { - string basePath = fileSystem.GetBasePath(); + string BasePath = FileSystem.GetBasePath(); - switch (switchContentPath) + switch (SwitchContentPath) { case ContentPath.SystemContent: - return Path.Combine(fileSystem.GetBasePath(), SystemNandPath, "Contents"); + return Path.Combine(FileSystem.GetBasePath(), SystemNandPath, "Contents"); case ContentPath.UserContent: - return Path.Combine(fileSystem.GetBasePath(), UserNandPath, "Contents"); + return Path.Combine(FileSystem.GetBasePath(), UserNandPath, "Contents"); case ContentPath.SdCardContent: - return Path.Combine(fileSystem.GetSdCardPath(), "Nintendo", "Contents"); + return Path.Combine(FileSystem.GetSdCardPath(), "Nintendo", "Contents"); case ContentPath.System: - return Path.Combine(basePath, SystemNandPath); + return Path.Combine(BasePath, SystemNandPath); case ContentPath.User: - return Path.Combine(basePath, UserNandPath); + return Path.Combine(BasePath, UserNandPath); default: - throw new NotSupportedException($"Content Path `{switchContentPath}` is not supported."); + throw new NotSupportedException($"Content Path `{SwitchContentPath}` is not supported."); } } - public static string GetContentPath(ContentStorageId contentStorageId) + public static string GetContentPath(ContentStorageId ContentStorageId) { - switch (contentStorageId) + switch (ContentStorageId) { case ContentStorageId.NandSystem: return ContentPath.SystemContent; @@ -39,13 +39,13 @@ namespace Ryujinx.HLE.FileSystem.Content case ContentStorageId.SdCard: return ContentPath.SdCardContent; default: - throw new NotSupportedException($"Content Storage `{contentStorageId}` is not supported."); + throw new NotSupportedException($"Content Storage `{ContentStorageId}` is not supported."); } } - public static string GetContentRoot(StorageId storageId) + public static string GetContentRoot(StorageId StorageId) { - switch (storageId) + switch (StorageId) { case StorageId.NandSystem: return ContentPath.SystemContent; @@ -54,15 +54,15 @@ namespace Ryujinx.HLE.FileSystem.Content case StorageId.SdCard: return ContentPath.SdCardContent; default: - throw new NotSupportedException($"Storage Id `{storageId}` is not supported."); + throw new NotSupportedException($"Storage Id `{StorageId}` is not supported."); } } - public static StorageId GetStorageId(string contentPathString) + public static StorageId GetStorageId(string ContentPathString) { - string cleanedPath = contentPathString.Split(':')[0]; + string CleanedPath = ContentPathString.Split(':')[0]; - switch (cleanedPath) + switch (CleanedPath) { case ContentPath.SystemContent: case ContentPath.System: |