diff options
| author | 2024-02-18 10:25:18 -0500 | |
|---|---|---|
| committer | 2024-02-18 10:25:18 -0500 | |
| commit | 6d731e1aa184636305a6d993544b50d9e5697f25 (patch) | |
| tree | 308b2a0c6b8c5d58320b1c8d900e552c8d7aae6b /src/core/file_sys | |
| parent | Merge pull request #13065 from t895/cancel-button-fail (diff) | |
| parent | service: Change unique_ptr to make_unique in GetCacheStorageMax (diff) | |
| download | yuzu-6d731e1aa184636305a6d993544b50d9e5697f25.tar.gz yuzu-6d731e1aa184636305a6d993544b50d9e5697f25.tar.xz yuzu-6d731e1aa184636305a6d993544b50d9e5697f25.zip | |
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.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 | ||