소스 검색

Merge pull request #11651 from liamwhite/fsc-creation

fsp-srv: enable auto save data creation on init
Narr the Reg 2 년 전
부모
커밋
7f9b64519d
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      src/core/hle/service/filesystem/fsp_srv.cpp

+ 3 - 0
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;