mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
IOS/ES: Consider hidden channels/system menu as channels
This commit is contained in:
parent
c8bffb0153
commit
aa3dc9a057
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue