From fd1a39996e3bb764e0f6a2b4bdce3d8622b89410 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 --- .../source/ncm/ncm_content_storage_impl_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libstratosphere/source/ncm/ncm_content_storage_impl_base.hpp b/libraries/libstratosphere/source/ncm/ncm_content_storage_impl_base.hpp index 085e14fc7..0d44056e8 100644 --- a/libraries/libstratosphere/source/ncm/ncm_content_storage_impl_base.hpp +++ b/libraries/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 {