diff options
author | Liam <byteslice@airmail.cc> | 2023-10-02 05:33:19 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-10-02 05:33:19 +0200 |
commit | f9521f5bd4a015dcdd3575d411dc80303bae4c3a (patch) | |
tree | 3c8d6d46c5d15c45bff61a8a45da1bc75b559657 /src/core | |
parent | Merge pull request #11642 from zhaobot/tx-update-20231001021119 (diff) | |
download | yuzu-f9521f5bd4a015dcdd3575d411dc80303bae4c3a.tar yuzu-f9521f5bd4a015dcdd3575d411dc80303bae4c3a.tar.gz yuzu-f9521f5bd4a015dcdd3575d411dc80303bae4c3a.tar.bz2 yuzu-f9521f5bd4a015dcdd3575d411dc80303bae4c3a.tar.lz yuzu-f9521f5bd4a015dcdd3575d411dc80303bae4c3a.tar.xz yuzu-f9521f5bd4a015dcdd3575d411dc80303bae4c3a.tar.zst yuzu-f9521f5bd4a015dcdd3575d411dc80303bae4c3a.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 3 |
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; |