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.
This commit is contained in:
Lioncash 2019-04-04 21:10:47 -04:00
parent 7c31661869
commit d9ee58a3b5
3 changed files with 15 additions and 4 deletions

View file

@ -616,7 +616,9 @@ private:
u64_le save_id;
u64_le title_id;
u64_le save_image_size;
INSERT_PADDING_BYTES(0x28);
u16_le index;
FileSys::SaveDataRank rank;
INSERT_PADDING_BYTES(0x25);
};
static_assert(sizeof(SaveDataInfo) == 0x60, "SaveDataInfo has incorrect size.");