summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
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