Merge pull request #11651 from liamwhite/fsc-creation

fsp-srv: enable auto save data creation on init
This commit is contained in:
Narr the Reg 2023-10-02 09:22:41 -06:00 committed by GitHub
commit 7f9b64519d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;