aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ryujinx.HLE/FileSystem/Content/LocationHelper.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/FileSystem/Content/LocationHelper.cs b/Ryujinx.HLE/FileSystem/Content/LocationHelper.cs
index df3f5ad6..c522b053 100644
--- a/Ryujinx.HLE/FileSystem/Content/LocationHelper.cs
+++ b/Ryujinx.HLE/FileSystem/Content/LocationHelper.cs
@@ -14,9 +14,9 @@ namespace Ryujinx.HLE.FileSystem.Content
switch (switchContentPath)
{
case ContentPath.SystemContent:
- return Path.Combine(fileSystem.GetBasePath(), SystemNandPath, "Contents");
+ return Path.Combine(basePath, SystemNandPath, "Contents");
case ContentPath.UserContent:
- return Path.Combine(fileSystem.GetBasePath(), UserNandPath, "Contents");
+ return Path.Combine(basePath, UserNandPath, "Contents");
case ContentPath.SdCardContent:
return Path.Combine(fileSystem.GetSdCardPath(), "Nintendo", "Contents");
case ContentPath.System: