From aa3dc9a057ae6c8422f496bf01bbfb3c6b805b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sun, 14 May 2017 16:05:10 +0200 Subject: [PATCH] IOS/ES: Consider hidden channels/system menu as channels --- Source/Core/Core/IOS/ES/Formats.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/ES/Formats.cpp b/Source/Core/Core/IOS/ES/Formats.cpp index 43d56b7fdf..dce527519f 100644 --- a/Source/Core/Core/IOS/ES/Formats.cpp +++ b/Source/Core/Core/IOS/ES/Formats.cpp @@ -42,9 +42,13 @@ bool IsDiscTitle(u64 title_id) bool IsChannel(u64 title_id) { + if (title_id == TITLEID_SYSMENU) + return true; + return IsTitleType(title_id, TitleType::Channel) || IsTitleType(title_id, TitleType::SystemChannel) || - IsTitleType(title_id, TitleType::GameWithChannel); + IsTitleType(title_id, TitleType::GameWithChannel) || + IsTitleType(title_id, TitleType::HiddenChannel); } bool Content::IsShared() const