mirror of
https://github.com/RPCS3/discord-bot.git
synced 2025-03-03 15:29:22 +00:00
Extend AMD checks for mobile SKUs
Should hopefully curb expectations when needed. Might need refinement when the time comes.
This commit is contained in:
parent
134526a7ef
commit
d85b6dbb7b
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user