Skip to content
Permalink
Browse files
Merge pull request #6376 from sepalani/es-fix
ES: Make it not fail on something that isn't IOS
  • Loading branch information
leoetlino committed Feb 13, 2018
2 parents f9b809a + 68f7a03 commit dbdf964
Showing 1 changed file with 3 additions and 1 deletion.
@@ -389,8 +389,10 @@ bool IsEmulated(u64 title_id)
{
const bool ios =
IsTitleType(title_id, IOS::ES::TitleType::System) && title_id != Titles::SYSTEM_MENU;
if (!ios)
return true;
const u32 version = static_cast<u32>(title_id);
return ios && IsEmulated(version);
return IsEmulated(version);
}
}
}

0 comments on commit dbdf964

Please sign in to comment.