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