mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-13 23:46:40 +00:00
ncm: fix ContentStorageImplBase constructor
This commit is contained in:
parent
8eb65ab401
commit
fd1a39996e
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ namespace ams::ncm {
|
||||||
MakeContentPathFunction make_content_path_func;
|
MakeContentPathFunction make_content_path_func;
|
||||||
bool disabled;
|
bool disabled;
|
||||||
protected:
|
protected:
|
||||||
ContentStorageImplBase() { /* ... */ }
|
ContentStorageImplBase() : make_content_path_func(), disabled(false) { /* ... */ }
|
||||||
protected:
|
protected:
|
||||||
/* Helpers. */
|
/* Helpers. */
|
||||||
Result EnsureEnabled() const {
|
Result EnsureEnabled() const {
|
||||||
|
|
Loading…
Reference in a new issue