summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/filesystem.cpp
diff options
context:
space:
mode:
authorChloe <25727384+ogniK5377@users.noreply.github.com>2021-06-03 02:46:29 +0200
committerGitHub <noreply@github.com>2021-06-03 02:46:29 +0200
commitc4c256f56ad4db7064aa2a2bc769f57efcbd5e38 (patch)
tree2aeb68fb1c51198071a4b340db69f9f9d453729d /src/core/hle/service/filesystem/filesystem.cpp
parentMerge pull request #6308 from Morph1984/result (diff)
downloadyuzu-c4c256f56ad4db7064aa2a2bc769f57efcbd5e38.tar
yuzu-c4c256f56ad4db7064aa2a2bc769f57efcbd5e38.tar.gz
yuzu-c4c256f56ad4db7064aa2a2bc769f57efcbd5e38.tar.bz2
yuzu-c4c256f56ad4db7064aa2a2bc769f57efcbd5e38.tar.lz
yuzu-c4c256f56ad4db7064aa2a2bc769f57efcbd5e38.tar.xz
yuzu-c4c256f56ad4db7064aa2a2bc769f57efcbd5e38.tar.zst
yuzu-c4c256f56ad4db7064aa2a2bc769f57efcbd5e38.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/filesystem.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp
index 4a1908bcb..3c16fe6c7 100644
--- a/src/core/hle/service/filesystem/filesystem.cpp
+++ b/src/core/hle/service/filesystem/filesystem.cpp
@@ -721,6 +721,10 @@ FileSys::VirtualDir FileSystemController::GetBCATDirectory(u64 title_id) const {
return bis_factory->GetBCATDirectory(title_id);
}
+void FileSystemController::SetAutoSaveDataCreation(bool enable) {
+ save_data_factory->SetAutoCreate(enable);
+}
+
void FileSystemController::CreateFactories(FileSys::VfsFilesystem& vfs, bool overwrite) {
if (overwrite) {
bis_factory = nullptr;