aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-18 10:25:18 -0500
committerGitHub <noreply@github.com>2024-02-18 10:25:18 -0500
commit6d731e1aa184636305a6d993544b50d9e5697f25 (patch)
tree308b2a0c6b8c5d58320b1c8d900e552c8d7aae6b /src/core/file_sys
parent839ded7d595609cb17643ce4841e3b80c04440b5 (diff)
parent8bbb44a74e74134084475174a96649323fd73123 (diff)
Merge pull request #13049 from Leystryku/master
Fix Just Dance 2023 not booting
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/control_metadata.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/control_metadata.h b/src/core/file_sys/control_metadata.h
index 555b9d8f7..667efbbab 100644
--- a/src/core/file_sys/control_metadata.h
+++ b/src/core/file_sys/control_metadata.h
@@ -64,8 +64,8 @@ struct RawNACP {
u64_le cache_storage_size;
u64_le cache_storage_journal_size;
u64_le cache_storage_data_and_journal_max_size;
- u64_le cache_storage_max_index;
- INSERT_PADDING_BYTES(0xE70);
+ u16_le cache_storage_max_index;
+ INSERT_PADDING_BYTES(0xE76);
};
static_assert(sizeof(RawNACP) == 0x4000, "RawNACP has incorrect size.");