From 64783b7cc2405a6baafb66c4621fe780b8841001 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Tue, 30 Jul 2019 18:37:08 -0400 Subject: [PATCH] Updated unk_x8 in the PdmPlayEvent struct. --- nx/include/switch/services/pdm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nx/include/switch/services/pdm.h b/nx/include/switch/services/pdm.h index c9325e5b..9c0253b2 100644 --- a/nx/include/switch/services/pdm.h +++ b/nx/include/switch/services/pdm.h @@ -85,13 +85,13 @@ typedef struct { union { struct { u32 version; ///< Title version. - } application; ///< For AppletId = 0x01. + } application; ///< For AppletId == ::AppletId_application. struct { u8 flag; ///< Set to 0x1 by pdm:ntfy cmd8, indicating that the below field is set to an input param. - u8 unk_x9; ///< Input value from pdm:ntfy cmd8. + u8 mode; ///< Input value from pdm:ntfy cmd8, see \ref LibAppletMode. u8 pad[2]; ///< Padding. - } applet; ///< For AppletId != 0x01. + } applet; ///< For AppletId != ::AppletId_application. u32 data; } unk_x8;