From 834549081a8054395a47fbe4e257539c284b3101 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 2 Feb 2021 17:10:01 -0800 Subject: [PATCH] ncm: fix ContentStorageImplBase constructor --- libstratosphere/source/ncm/ncm_content_storage_impl_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstratosphere/source/ncm/ncm_content_storage_impl_base.hpp b/libstratosphere/source/ncm/ncm_content_storage_impl_base.hpp index 085e14fc..0d44056e 100644 --- a/libstratosphere/source/ncm/ncm_content_storage_impl_base.hpp +++ b/libstratosphere/source/ncm/ncm_content_storage_impl_base.hpp @@ -26,7 +26,7 @@ namespace ams::ncm { MakeContentPathFunction make_content_path_func; bool disabled; protected: - ContentStorageImplBase() { /* ... */ } + ContentStorageImplBase() : make_content_path_func(), disabled(false) { /* ... */ } protected: /* Helpers. */ Result EnsureEnabled() const {