mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Fix the save data path on the SD card
This commit is contained in:
parent
489ad0fb8a
commit
48c99f13bb
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue