mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-25 06:44:59 +00:00
ES: Make it not fail on something that isn't IOS
This commit is contained in:
parent
8e06257f19
commit
68f7a03d05
1 changed files with 3 additions and 1 deletions
|
@ -389,8 +389,10 @@ bool IsEmulated(u64 title_id)
|
||||||
{
|
{
|
||||||
const bool ios =
|
const bool ios =
|
||||||
IsTitleType(title_id, IOS::ES::TitleType::System) && title_id != Titles::SYSTEM_MENU;
|
IsTitleType(title_id, IOS::ES::TitleType::System) && title_id != Titles::SYSTEM_MENU;
|
||||||
|
if (!ios)
|
||||||
|
return true;
|
||||||
const u32 version = static_cast<u32>(title_id);
|
const u32 version = static_cast<u32>(title_id);
|
||||||
return ios && IsEmulated(version);
|
return IsEmulated(version);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue