summaryrefslogtreecommitdiff
path: root/src/core/hle/service/am
diff options
context:
space:
mode:
authorGravatar Leystryku2024-02-18 06:00:42 +0100
committerGravatar Leystryku2024-02-18 06:00:42 +0100
commit4f387b0b74138e033b88fbe4e137d6ab8c7130ac (patch)
tree2488b892641ad43653dda2e757741b3ed3dccf95 /src/core/hle/service/am
parentservice: Add proper GetCacheStorageMax implementation to IApplicationFunctions (diff)
downloadyuzu-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/hle/service/am')
-rw-r--r--src/core/hle/service/am/service/application_functions.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/core/hle/service/am/service/application_functions.cpp b/src/core/hle/service/am/service/application_functions.cpp
index eee9428ce..fe37083f3 100644
--- a/src/core/hle/service/am/service/application_functions.cpp
+++ b/src/core/hle/service/am/service/application_functions.cpp
@@ -272,17 +272,14 @@ Result IApplicationFunctions::GetCacheStorageMax(Out<u32> out_cache_storage_inde
272 Out<u64> out_max_journal_size) { 272 Out<u64> out_max_journal_size) {
273 LOG_DEBUG(Service_AM, "called"); 273 LOG_DEBUG(Service_AM, "called");
274 274
275 const auto title_id = m_applet->program_id;
276
277 std::vector<u8> nacp; 275 std::vector<u8> nacp;
278 const auto result = system.GetARPManager().GetControlProperty(&nacp, title_id); 276 R_TRY(system.GetARPManager().GetControlProperty(&nacp, m_applet->program_id));
279 277
280 if (R_SUCCEEDED(result)) { 278 FileSys::RawNACP raw_nacp{};
281 const auto rawnacp = reinterpret_cast<FileSys::RawNACP*>(nacp.data()); 279 std::memcpy(&raw_nacp, nacp.data(), std::min(sizeof(raw_nacp), nacp.size()));
282 280
283 *out_cache_storage_index_max = static_cast<u32>(rawnacp->cache_storage_max_index); 281 *out_cache_storage_index_max = static_cast<u32>(raw_nacp.cache_storage_max_index);
284 *out_max_journal_size = static_cast<u64>(rawnacp->cache_storage_data_and_journal_max_size); 282 *out_max_journal_size = static_cast<u64>(raw_nacp.cache_storage_data_and_journal_max_size);
285 }
286 283
287 R_SUCCEED(); 284 R_SUCCEED();
288} 285}