diff options
author | Liam <[email protected]> | 2024-02-23 15:10:35 -0500 |
---|---|---|
committer | Liam <[email protected]> | 2024-02-23 15:10:35 -0500 |
commit | f1c16b487a900213258d62bf7b2ccf1ac70a83cd (patch) | |
tree | 2405d6eaf720126849f36f7fb0b231565f549cec | |
parent | 77107ba124197c19da69cf4923088d10fafbf9e5 (diff) | |
download | yuzu-android-f1c16b487a900213258d62bf7b2ccf1ac70a83cd.tar.gz yuzu-android-f1c16b487a900213258d62bf7b2ccf1ac70a83cd.zip |
fs: fix argument order
-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 } Result FSP_SRV::CreateSaveDataFileSystemBySystemSaveDataId( - FileSys::SaveDataCreationInfo save_create_struct, FileSys::SaveDataAttribute save_struct) { + FileSys::SaveDataAttribute save_struct, FileSys::SaveDataCreationInfo save_create_struct) { LOG_DEBUG(Service_FS, "called save_struct = {}", save_struct.DebugInfo()); 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: Result CreateSaveDataFileSystem(FileSys::SaveDataCreationInfo save_create_struct, FileSys::SaveDataAttribute save_struct, u128 uid); Result CreateSaveDataFileSystemBySystemSaveDataId( - FileSys::SaveDataCreationInfo save_create_struct, FileSys::SaveDataAttribute save_struct); + FileSys::SaveDataAttribute save_struct, FileSys::SaveDataCreationInfo save_create_struct); Result OpenSaveDataFileSystem(OutInterface<IFileSystem> out_interface, FileSys::SaveDataSpaceId space_id, FileSys::SaveDataAttribute attribute); |