From 5423b5c3203db571c4101b042a538998f9d0c24a Mon Sep 17 00:00:00 2001 From: Zerofo <46804648+zerofo@users.noreply.github.com> Date: Tue, 26 Oct 2021 10:20:38 +0800 Subject: [PATCH] Update ncm_remote_content_storage_impl.hpp --- .../source/ncm/ncm_remote_content_storage_impl.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libraries/libstratosphere/source/ncm/ncm_remote_content_storage_impl.hpp b/libraries/libstratosphere/source/ncm/ncm_remote_content_storage_impl.hpp index 2e70fb189..600c7e282 100644 --- a/libraries/libstratosphere/source/ncm/ncm_remote_content_storage_impl.hpp +++ b/libraries/libstratosphere/source/ncm/ncm_remote_content_storage_impl.hpp @@ -201,11 +201,14 @@ namespace ams::ncm { } Result RegisterPath(const ContentId &content_id, const Path &path) { - return ncmContentStorageRegisterPath(std::addressof(m_srv), Convert(content_id), path.str); + AMS_ABORT("TODO"); + + //return ncmContentStorageRegisterPath(std::addressof(m_srv), Convert(content_id), path.str); } Result ClearRegisteredPath() { - return ncmContentStorageClearRegisteredPath(std::addressof(m_srv)); + AMS_ABORT("TODO"); + //return ncmContentStorageClearRegisteredPath(std::addressof(m_srv)); } }; static_assert(ncm::IsIContentStorage);