summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar Lioncash2019-04-04 21:10:47 -0400
committerGravatar Lioncash2019-04-05 11:03:53 -0400
commitd9ee58a3b5c3682d96713067e6cf2bf3ef72ec55 (patch)
tree3b4a74ff1f81e95c437519714bcb619fd2bbdbfd /src/core/hle
parentMerge pull request #2330 from lioncash/pragma (diff)
downloadyuzu-d9ee58a3b5c3682d96713067e6cf2bf3ef72ec55.tar.gz
yuzu-d9ee58a3b5c3682d96713067e6cf2bf3ef72ec55.tar.xz
yuzu-d9ee58a3b5c3682d96713067e6cf2bf3ef72ec55.zip
service/fsp_srv: Update SaveDataInfo and SaveDataDescriptor structs
I realized that I updated the documentation on SwitchBrew a while ago, but never actually updated the structs within yuzu.
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index f03fb629c..06547e063 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -616,7 +616,9 @@ private:
616 u64_le save_id; 616 u64_le save_id;
617 u64_le title_id; 617 u64_le title_id;
618 u64_le save_image_size; 618 u64_le save_image_size;
619 INSERT_PADDING_BYTES(0x28); 619 u16_le index;
620 FileSys::SaveDataRank rank;
621 INSERT_PADDING_BYTES(0x25);
620 }; 622 };
621 static_assert(sizeof(SaveDataInfo) == 0x60, "SaveDataInfo has incorrect size."); 623 static_assert(sizeof(SaveDataInfo) == 0x60, "SaveDataInfo has incorrect size.");
622 624