From 7e363696cdf82c82506d8f5be3536b6785de442c Mon Sep 17 00:00:00 2001 From: MasaGratoR Date: Sun, 1 Jun 2025 08:38:03 +0200 Subject: [PATCH] Remove unnecesary NX_PACKED --- nx/include/switch/services/set.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/services/set.h b/nx/include/switch/services/set.h index e37345a4..09c2b845 100644 --- a/nx/include/switch/services/set.h +++ b/nx/include/switch/services/set.h @@ -501,12 +501,12 @@ typedef struct { } NX_PACKED cea; ///< CEA EDID timing extension struct { u8 data[0x7E]; - } NX_PACKED display_id; ///< [13.0.0+] DisplayID Extension Block + } display_id; ///< [13.0.0+] DisplayID Extension Block struct { u8 second_block_extension_tag; u8 third_block_extension_tag; u8 padding[0x7C]; - } NX_PACKED block_map; ///< [13.0.0+] EDID Extension Block Map + } block_map; ///< [13.0.0+] EDID Extension Block Map } extension_block; u8 extended_checksum; ///< Sum of 128 extended bytes should equal 0 mod 256. } SetSysExtensionBlock;