summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-10-02 17:22:41 +0200
committerGitHub <noreply@github.com>2023-10-02 17:22:41 +0200
commit7f9b64519dabd0218df8dc818bccf2a783e34404 (patch)
tree3c8d6d46c5d15c45bff61a8a45da1bc75b559657
parentMerge pull request #11642 from zhaobot/tx-update-20231001021119 (diff)
parentfsp-srv: enable auto save data creation on init (diff)
downloadyuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.tar
yuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.tar.gz
yuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.tar.bz2
yuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.tar.lz
yuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.tar.xz
yuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.tar.zst
yuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.zip
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index c2054e8a0..126cd6ffd 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -855,6 +855,9 @@ FSP_SRV::FSP_SRV(Core::System& system_)
if (Settings::values.enable_fs_access_log) {
access_log_mode = AccessLogMode::SdCard;
}
+
+ // This should be true on creation
+ fsc.SetAutoSaveDataCreation(true);
}
FSP_SRV::~FSP_SRV() = default;