diff options
| author | 2024-02-18 06:00:42 +0100 | |
|---|---|---|
| committer | 2024-02-18 06:00:42 +0100 | |
| commit | 4f387b0b74138e033b88fbe4e137d6ab8c7130ac (patch) | |
| tree | 2488b892641ad43653dda2e757741b3ed3dccf95 /src/core/file_sys | |
| parent | service: Add proper GetCacheStorageMax implementation to IApplicationFunctions (diff) | |
| download | yuzu-4f387b0b74138e033b88fbe4e137d6ab8c7130ac.tar.gz yuzu-4f387b0b74138e033b88fbe4e137d6ab8c7130ac.tar.xz yuzu-4f387b0b74138e033b88fbe4e137d6ab8c7130ac.zip | |
file_sys: Fix nacp field cache_storage_max_index datatype
Diffstat (limited to 'src/core/file_sys')
| -rw-r--r-- | src/core/file_sys/control_metadata.h | 4 |
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 { | |||
| 64 | u64_le cache_storage_size; | 64 | u64_le cache_storage_size; |
| 65 | u64_le cache_storage_journal_size; | 65 | u64_le cache_storage_journal_size; |
| 66 | u64_le cache_storage_data_and_journal_max_size; | 66 | u64_le cache_storage_data_and_journal_max_size; |
| 67 | u64_le cache_storage_max_index; | 67 | u16_le cache_storage_max_index; |
| 68 | INSERT_PADDING_BYTES(0xE70); | 68 | INSERT_PADDING_BYTES(0xE76); |
| 69 | }; | 69 | }; |
| 70 | static_assert(sizeof(RawNACP) == 0x4000, "RawNACP has incorrect size."); | 70 | static_assert(sizeof(RawNACP) == 0x4000, "RawNACP has incorrect size."); |
| 71 | 71 | ||