From 41e2fab54c861e85eb5fbcbddf91491ed87fa0c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Thu, 11 Feb 2021 09:47:32 +0100 Subject: [PATCH] IOS/ES: Log content ID and index when opening contents for debugging The content ID/index is what actually matters.. --- Source/Core/Core/IOS/ES/TitleContents.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/ES/TitleContents.cpp b/Source/Core/Core/IOS/ES/TitleContents.cpp index 0cab7b7c91..b099937367 100644 --- a/Source/Core/Core/IOS/ES/TitleContents.cpp +++ b/Source/Core/Core/IOS/ES/TitleContents.cpp @@ -39,7 +39,9 @@ s32 ESDevice::OpenContent(const ES::TMDReader& tmd, u16 content_index, u32 uid) entry.m_content = content; entry.m_title_id = title_id; entry.m_uid = uid; - INFO_LOG_FMT(IOS_ES, "OpenContent: title ID {:016x}, UID {:#x}, CFD {}", title_id, uid, i); + INFO_LOG_FMT(IOS_ES, + "OpenContent: title ID {:016x}, UID {:#x}, content {:08x} (index {}) -> CFD {}", + title_id, uid, content.id, content_index, i); return static_cast(i); }