From f9521f5bd4a015dcdd3575d411dc80303bae4c3a Mon Sep 17 00:00:00 2001 From: Liam Date: Sun, 1 Oct 2023 23:33:19 -0400 Subject: fsp-srv: enable auto save data creation on init --- src/core/hle/service/filesystem/fsp_srv.cpp | 3 +++ 1 file changed, 3 insertions(+) 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; -- cgit v1.2.3