diff options
author | liamwhite <[email protected]> | 2024-02-23 15:23:06 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-23 15:23:06 -0500 |
commit | 975d6f1ec457f6c0e7bb6c667850099593b27e02 (patch) | |
tree | ca496f47959ff48947fba74da5b03ef6e964e925 | |
parent | 7c9e2255be2f30e336e3c01a4f11a8438359a66a (diff) | |
parent | f1c16b487a900213258d62bf7b2ccf1ac70a83cd (diff) | |
download | yuzu-mainline-975d6f1ec457f6c0e7bb6c667850099593b27e02.tar.gz yuzu-mainline-975d6f1ec457f6c0e7bb6c667850099593b27e02.zip |
Merge pull request #13141 from liamwhite/swap
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 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 } 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 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: 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); |