diff --git a/Source/Core/Core/IOS/VersionInfo.cpp b/Source/Core/Core/IOS/VersionInfo.cpp index 8ce4c011ef..ab0f9ea83f 100644 --- a/Source/Core/Core/IOS/VersionInfo.cpp +++ b/Source/Core/Core/IOS/VersionInfo.cpp @@ -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(title_id); - return ios && IsEmulated(version); + return IsEmulated(version); } } }