mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 23:59:27 +01:00
IOS/ES: Consider hidden channels/system menu as channels
This commit is contained in:
parent
c8bffb0153
commit
aa3dc9a057
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user