From 48c99f13bb0e484cbe9af649845caec4e971da18 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Fri, 20 Aug 2021 15:57:48 -0700 Subject: [PATCH] Fix the save data path on the SD card --- src/LibHac/FsSrv/SaveDataFileSystemServiceImpl.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LibHac/FsSrv/SaveDataFileSystemServiceImpl.cs b/src/LibHac/FsSrv/SaveDataFileSystemServiceImpl.cs index 0378549f..29fa3aae 100644 --- a/src/LibHac/FsSrv/SaveDataFileSystemServiceImpl.cs +++ b/src/LibHac/FsSrv/SaveDataFileSystemServiceImpl.cs @@ -682,9 +682,9 @@ namespace LibHac.FsSrv Unsafe.SkipInit(out FsPath path); var sb = new U8StringBuilder(path.Str); sb.Append((byte)'/') - .Append(basePath.Value) + .Append(CommonPaths.SdCardNintendoRootDirectoryName) .Append((byte)'/') - .Append(CommonPaths.SdCardNintendoRootDirectoryName); + .Append(basePath.Value); rc = Utility.WrapSubDirectory(out tempSubFs, ref tempFs, path, createIfMissing); if (rc.IsFailure()) return rc;