diff options
| author | 2023-10-02 09:22:41 -0600 | |
|---|---|---|
| committer | 2023-10-02 09:22:41 -0600 | |
| commit | 7f9b64519dabd0218df8dc818bccf2a783e34404 (patch) | |
| tree | 3c8d6d46c5d15c45bff61a8a45da1bc75b559657 | |
| parent | Merge pull request #11642 from zhaobot/tx-update-20231001021119 (diff) | |
| parent | fsp-srv: enable auto save data creation on init (diff) | |
| download | yuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.tar.gz yuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.tar.xz yuzu-7f9b64519dabd0218df8dc818bccf2a783e34404.zip | |
Merge pull request #11651 from liamwhite/fsc-creation
fsp-srv: enable auto save data creation on init
Diffstat (limited to '')
| -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_) | |||
| 855 | if (Settings::values.enable_fs_access_log) { | 855 | if (Settings::values.enable_fs_access_log) { |
| 856 | access_log_mode = AccessLogMode::SdCard; | 856 | access_log_mode = AccessLogMode::SdCard; |
| 857 | } | 857 | } |
| 858 | |||
| 859 | // This should be true on creation | ||
| 860 | fsc.SetAutoSaveDataCreation(true); | ||
| 858 | } | 861 | } |
| 859 | 862 | ||
| 860 | FSP_SRV::~FSP_SRV() = default; | 863 | FSP_SRV::~FSP_SRV() = default; |