From 3bf713e43ed4f047fb6a4e73af24111ae2877bbe Mon Sep 17 00:00:00 2001 From: lizzie Date: Mon, 7 Sep 2026 23:35:54 +0000 Subject: [PATCH] 2026-09-07 23:35:54 Signed-off-by: lizzie --- .../ns/read_only_application_control_data_interface.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/core/hle/service/ns/read_only_application_control_data_interface.cpp b/src/core/hle/service/ns/read_only_application_control_data_interface.cpp index 305740c3eb..c7606a83bf 100644 --- a/src/core/hle/service/ns/read_only_application_control_data_interface.cpp +++ b/src/core/hle/service/ns/read_only_application_control_data_interface.cpp @@ -299,17 +299,11 @@ Result IReadOnlyApplicationControlDataInterface::GetApplicationControlData2( void IReadOnlyApplicationControlDataInterface::ListApplicationIcon(HLERequestContext& ctx) { LOG_WARNING(Service_NS, "(stubbed)"); - const auto app_ids_buffer = ctx.ReadBuffer(); const u64 app_count = app_ids_buffer.size() / sizeof(u64); auto t_mem_obj = ctx.GetObjectFromHandle(ctx.GetCopyHandle(0)); auto* t_mem = t_mem_obj.GetPointerUnsafe(); - - constexpr size_t title_entry_size = sizeof(FileSys::LanguageEntry); - const size_t total_data_size = app_count * title_entry_size; - - constexpr s32 data_offset = 0; - + size_t out_length = 0; if (t_mem != nullptr && t_mem->GetOwner() != nullptr && app_count > 0) { auto& memory = t_mem->GetOwner()->GetMemory(); const auto t_mem_address = t_mem->GetSourceAddress();