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