diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp/fsp_srv.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/filesystem/fsp/fsp_srv.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/filesystem/fsp/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp/fsp_srv.cpp index 04819afdf..223284255 100644 --- a/src/core/hle/service/filesystem/fsp/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp/fsp_srv.cpp | |||
| @@ -236,7 +236,7 @@ Result FSP_SRV::CreateSaveDataFileSystem(FileSys::SaveDataCreationInfo save_crea | |||
| 236 | } | 236 | } |
| 237 | 237 | ||
| 238 | Result FSP_SRV::CreateSaveDataFileSystemBySystemSaveDataId( | 238 | Result FSP_SRV::CreateSaveDataFileSystemBySystemSaveDataId( |
| 239 | FileSys::SaveDataCreationInfo save_create_struct, FileSys::SaveDataAttribute save_struct) { | 239 | FileSys::SaveDataAttribute save_struct, FileSys::SaveDataCreationInfo save_create_struct) { |
| 240 | LOG_DEBUG(Service_FS, "called save_struct = {}", save_struct.DebugInfo()); | 240 | LOG_DEBUG(Service_FS, "called save_struct = {}", save_struct.DebugInfo()); |
| 241 | 241 | ||
| 242 | FileSys::VirtualDir save_data_dir{}; | 242 | FileSys::VirtualDir save_data_dir{}; |
diff --git a/src/core/hle/service/filesystem/fsp/fsp_srv.h b/src/core/hle/service/filesystem/fsp/fsp_srv.h index db51852c7..83d9cb51c 100644 --- a/src/core/hle/service/filesystem/fsp/fsp_srv.h +++ b/src/core/hle/service/filesystem/fsp/fsp_srv.h | |||
| @@ -54,7 +54,7 @@ private: | |||
| 54 | Result CreateSaveDataFileSystem(FileSys::SaveDataCreationInfo save_create_struct, | 54 | Result CreateSaveDataFileSystem(FileSys::SaveDataCreationInfo save_create_struct, |
| 55 | FileSys::SaveDataAttribute save_struct, u128 uid); | 55 | FileSys::SaveDataAttribute save_struct, u128 uid); |
| 56 | Result CreateSaveDataFileSystemBySystemSaveDataId( | 56 | Result CreateSaveDataFileSystemBySystemSaveDataId( |
| 57 | FileSys::SaveDataCreationInfo save_create_struct, FileSys::SaveDataAttribute save_struct); | 57 | FileSys::SaveDataAttribute save_struct, FileSys::SaveDataCreationInfo save_create_struct); |
| 58 | Result OpenSaveDataFileSystem(OutInterface<IFileSystem> out_interface, | 58 | Result OpenSaveDataFileSystem(OutInterface<IFileSystem> out_interface, |
| 59 | FileSys::SaveDataSpaceId space_id, | 59 | FileSys::SaveDataSpaceId space_id, |
| 60 | FileSys::SaveDataAttribute attribute); | 60 | FileSys::SaveDataAttribute attribute); |