From ec4a978ef555abe6d5c7a993ca7b1aefa7e92e09 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 21 Apr 2024 17:19:35 +0200 Subject: [PATCH] nn_ccr: Update CCRAppLaunchParam struct --- include/nn/ccr/sys_caffeine.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/nn/ccr/sys_caffeine.h b/include/nn/ccr/sys_caffeine.h index 55370032f..fce8052a0 100644 --- a/include/nn/ccr/sys_caffeine.h +++ b/include/nn/ccr/sys_caffeine.h @@ -16,11 +16,11 @@ typedef struct CCRAppLaunchParam CCRAppLaunchParam; struct WUT_PACKED CCRAppLaunchParam { - uint64_t titleId; - char uuid[16]; + uint64_t launchInfoDatabaseEntryId; // id used in the \link nn::sl::LaunchInfoDatabase + char uuid[16]; // account uuid WUT_UNKNOWN_BYTES(0xE7); }; -WUT_CHECK_OFFSET(CCRAppLaunchParam, 0x00, titleId); +WUT_CHECK_OFFSET(CCRAppLaunchParam, 0x00, launchInfoDatabaseEntryId); WUT_CHECK_OFFSET(CCRAppLaunchParam, 0x08, uuid); WUT_CHECK_SIZE(CCRAppLaunchParam, 0xFF);