Browse Source

forgot logo path struct

pull/3123/head
Maufeat 2 weeks ago
parent
commit
dad34dfc1e
  1. 5
      src/core/hle/service/ns/ns_types.h

5
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<char, 0x300> path;
};
static_assert(std::is_trivially_copyable_v<LogoPath>, "LogoPath must be trivially copyable.");
} // namespace Service::NS
Loading…
Cancel
Save