summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp/fsp_srv.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-23 21:23:06 +0100
committerGitHub <noreply@github.com>2024-02-23 21:23:06 +0100
commit975d6f1ec457f6c0e7bb6c667850099593b27e02 (patch)
treeca496f47959ff48947fba74da5b03ef6e964e925 /src/core/hle/service/filesystem/fsp/fsp_srv.cpp
parentMerge pull request #13137 from liamwhite/mac-ci (diff)
parentfs: fix argument order (diff)
downloadyuzu-975d6f1ec457f6c0e7bb6c667850099593b27e02.tar
yuzu-975d6f1ec457f6c0e7bb6c667850099593b27e02.tar.gz
yuzu-975d6f1ec457f6c0e7bb6c667850099593b27e02.tar.bz2
yuzu-975d6f1ec457f6c0e7bb6c667850099593b27e02.tar.lz
yuzu-975d6f1ec457f6c0e7bb6c667850099593b27e02.tar.xz
yuzu-975d6f1ec457f6c0e7bb6c667850099593b27e02.tar.zst
yuzu-975d6f1ec457f6c0e7bb6c667850099593b27e02.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/fsp/fsp_srv.cpp2
1 files changed, 1 insertions, 1 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{};