From dad34dfc1ea80ff46de4203b39760f8842ea1839 Mon Sep 17 00:00:00 2001 From: Maufeat Date: Fri, 12 Dec 2025 02:28:38 +0100 Subject: [PATCH] forgot logo path struct --- src/core/hle/service/ns/ns_types.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/hle/service/ns/ns_types.h b/src/core/hle/service/ns/ns_types.h index f7c712f0f6..07b863e2cd 100644 --- a/src/core/hle/service/ns/ns_types.h +++ b/src/core/hle/service/ns/ns_types.h @@ -129,4 +129,9 @@ struct ApplicationDisplayData { }; static_assert(sizeof(ApplicationDisplayData) == 0x300, "ApplicationDisplayData has incorrect size."); +struct LogoPath { + std::array path; +}; +static_assert(std::is_trivially_copyable_v, "LogoPath must be trivially copyable."); + } // namespace Service::NS