From 3bcfb043f1e6d66c45e7a49fcb5f9ccbdd2499bf Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 24 Mar 2021 07:16:55 -0700 Subject: [PATCH] ncm: fix GameCardStorageRoot mount point (closes #1404) --- libstratosphere/source/ncm/ncm_content_manager_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstratosphere/source/ncm/ncm_content_manager_impl.cpp b/libstratosphere/source/ncm/ncm_content_manager_impl.cpp index 60f34988..b4fa0bad 100644 --- a/libstratosphere/source/ncm/ncm_content_manager_impl.cpp +++ b/libstratosphere/source/ncm/ncm_content_manager_impl.cpp @@ -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(); }