From 015ca9652c49c1035b717c3485b8d76be3feb635 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Sun, 30 Jun 2019 10:46:54 -0400 Subject: [PATCH] Filled in the PdmApplicationPlayStatistics struct. --- nx/include/switch/services/pdm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nx/include/switch/services/pdm.h b/nx/include/switch/services/pdm.h index d66c4270..ff6e3382 100644 --- a/nx/include/switch/services/pdm.h +++ b/nx/include/switch/services/pdm.h @@ -11,6 +11,7 @@ /// ApplicationPlayStatistics typedef struct { u64 titleID; ///< titleID - u8 unk_x8[0x10]; ///< Unknown + u64 totalPlayTime; ///< Total play-time in nanoseconds. + u64 totalLaunches; ///< Total times the application title was launched. } PdmApplicationPlayStatistics;