From b0980e4c9f4e84dc30da48e450c26a910c4308e0 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Sat, 26 Oct 2019 22:15:23 -0400 Subject: [PATCH] Fixed the type for key_generation in NcmRightsId. --- nx/include/switch/services/ncm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/services/ncm.h b/nx/include/switch/services/ncm.h index 8e2a6cf9..be0712cf 100644 --- a/nx/include/switch/services/ncm.h +++ b/nx/include/switch/services/ncm.h @@ -128,7 +128,7 @@ typedef struct { /// RightsId typedef struct { FsRightsId rights_id; - u32 key_generation; ///< [3.0.0+] + u8 key_generation; ///< [3.0.0+] u8 pad[7]; ///< [3.0.0+] } NcmRightsId;