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 fc67a4713..05869527d 100644 --- a/src/core/hle/service/filesystem/fsp/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp/fsp_srv.cpp | |||
| @@ -235,7 +235,7 @@ Result FSP_SRV::CreateSaveDataFileSystem(FileSys::SaveDataCreationInfo save_crea | |||
| 235 | } | 235 | } |
| 236 | 236 | ||
| 237 | Result FSP_SRV::CreateSaveDataFileSystemBySystemSaveDataId( | 237 | Result FSP_SRV::CreateSaveDataFileSystemBySystemSaveDataId( |
| 238 | FileSys::SaveDataCreationInfo save_create_struct, FileSys::SaveDataAttribute save_struct) { | 238 | FileSys::SaveDataAttribute save_struct, FileSys::SaveDataCreationInfo save_create_struct) { |
| 239 | LOG_DEBUG(Service_FS, "called save_struct = {}", save_struct.DebugInfo()); | 239 | LOG_DEBUG(Service_FS, "called save_struct = {}", save_struct.DebugInfo()); |
| 240 | 240 | ||
| 241 | FileSys::VirtualDir save_data_dir{}; | 241 | 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 ee67f6bc1..79ba44355 100644 --- a/src/core/hle/service/filesystem/fsp/fsp_srv.h +++ b/src/core/hle/service/filesystem/fsp/fsp_srv.h | |||
| @@ -53,7 +53,7 @@ private: | |||
| 53 | Result CreateSaveDataFileSystem(FileSys::SaveDataCreationInfo save_create_struct, | 53 | Result CreateSaveDataFileSystem(FileSys::SaveDataCreationInfo save_create_struct, |
| 54 | FileSys::SaveDataAttribute save_struct, u128 uid); | 54 | FileSys::SaveDataAttribute save_struct, u128 uid); |
| 55 | Result CreateSaveDataFileSystemBySystemSaveDataId( | 55 | Result CreateSaveDataFileSystemBySystemSaveDataId( |
| 56 | FileSys::SaveDataCreationInfo save_create_struct, FileSys::SaveDataAttribute save_struct); | 56 | FileSys::SaveDataAttribute save_struct, FileSys::SaveDataCreationInfo save_create_struct); |
| 57 | Result OpenSaveDataFileSystem(OutInterface<IFileSystem> out_interface, | 57 | Result OpenSaveDataFileSystem(OutInterface<IFileSystem> out_interface, |
| 58 | FileSys::SaveDataSpaceId space_id, | 58 | FileSys::SaveDataSpaceId space_id, |
| 59 | FileSys::SaveDataAttribute attribute); | 59 | FileSys::SaveDataAttribute attribute); |