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;