From 75a2052144274166006ff05229447f071f983e2d 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/libraries/libstratosphere/source/ncm/ncm_content_manager_impl.cpp b/libraries/libstratosphere/source/ncm/ncm_content_manager_impl.cpp index 60f349888..b4fa0bad3 100644 --- a/libraries/libstratosphere/source/ncm/ncm_content_manager_impl.cpp +++ b/libraries/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(); }