diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp index af97561e4..ca93062cf 100644 --- a/src/core/hle/service/filesystem/filesystem.cpp +++ b/src/core/hle/service/filesystem/filesystem.cpp @@ -717,7 +717,8 @@ void FileSystemController::CreateFactories(FileSys::VfsFilesystem& vfs, bool ove      }      if (save_data_factory == nullptr) { -        save_data_factory = std::make_unique<FileSys::SaveDataFactory>(std::move(nand_directory)); +        save_data_factory = +            std::make_unique<FileSys::SaveDataFactory>(system, std::move(nand_directory));      }      if (sdmc_factory == nullptr) { | 
