From 4ecc597d0db4c915cb6995adfb37ae799840c42d Mon Sep 17 00:00:00 2001 From: yellows8 Date: Mon, 28 Oct 2019 02:21:23 -0400 Subject: [PATCH] ncm: Renamed the titleID field in NcmProgramLocation to program_id. Minor docs adjustment. --- nx/include/switch/services/ncm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/services/ncm.h b/nx/include/switch/services/ncm.h index ce248c2d..fc2e6360 100644 --- a/nx/include/switch/services/ncm.h +++ b/nx/include/switch/services/ncm.h @@ -85,7 +85,7 @@ typedef struct { /// ContentInfo typedef struct { - NcmContentId content_id; ///< \ref NcmContentId + NcmContentId content_id; ///< \ref NcmContentId u8 size[0x6]; ///< Content size. u8 content_type; ///< \ref NcmContentType. u8 id_offset; ///< Offset of this content. Unused by most applications. @@ -139,7 +139,7 @@ typedef struct { /// ProgramLocation typedef struct { - u64 titleID; + u64 program_id; ///< ProgramId u8 storageID; ///< \ref FsStorageId u8 pad[7]; } NcmProgramLocation;