mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 21:51:45 +00:00
ncm: fix GameCardStorageRoot mount point (closes #1404)
This commit is contained in:
parent
5666c59657
commit
75a2052144
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ namespace ams::ncm {
|
|||
|
||||
/* Create a new mount name and copy it to out. */
|
||||
std::strcpy(out->mount_name, impl::CreateUniqueMountName().str);
|
||||
util::SNPrintf(out->path, sizeof(out->path), "%s:/", out->mount_name);
|
||||
util::SNPrintf(out->path, sizeof(out->path), "%s:", out->mount_name);
|
||||
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue