Extend AMD checks for mobile SKUs

Should hopefully curb expectations when needed. Might need
refinement when the time comes.
This commit is contained in:
dio-gh 2020-03-27 01:11:36 +01:00 committed by 13xforever
parent 134526a7ef
commit d85b6dbb7b

View File

@ -265,6 +265,10 @@ namespace CompatBot.Utils.ResultFormatters
{
if (threadCount < 12)
notes.Add("⚠ Six cores or more is recommended for Ryzen CPUs");
if (cpu.EndsWith('U')
|| cpu.EndsWith('H')
|| cpu.EndsWith("HS"))
notes.Add("⚠ Mobile Ryzen CPUs are only recommended for lighter games.");
}
else
notes.Add("⚠ AMD CPUs before Ryzen are too weak for PS3 emulation");
@ -282,7 +286,7 @@ namespace CompatBot.Utils.ResultFormatters
|| cpu.Contains('Y')
|| cpu[^2] == 'G'
|| threadCount < 6))
notes.Add("⚠ This CPU is too old and/or too weak for PS3 emulation");
notes.Add("⚠ This CPU is too weak and/or too old for PS3 emulation");
}
}