mirror of
https://github.com/RPCS3/discord-bot.git
synced 2025-01-19 17:12:17 +00:00
lower error level for frame pacing notes
This commit is contained in:
parent
a2bcc6e7f0
commit
2e17f30fed
@ -179,9 +179,9 @@ namespace CompatBot.Utils.ResultFormatters
|
||||
else if (double.TryParse(frameLimitStr, NumberStyles.Float, NumberFormatInfo.InvariantInfo, out var frameLimit))
|
||||
{
|
||||
if (frameLimit > 30 && frameLimit < 60)
|
||||
notes.Add("⚠ Frame rate might be limited to 30 fps due to enabled VSync");
|
||||
notes.Add("ℹ Frame rate might be limited to 30 fps due to enabled VSync");
|
||||
else if (frameLimit < 30)
|
||||
notes.Add("⚠ Frame rate might be limited to 15 fps due to enabled VSync");
|
||||
notes.Add("ℹ Frame rate might be limited to 15 fps due to enabled VSync");
|
||||
else
|
||||
notes.Add("ℹ Frame pacing might be affected due to VSync and Frame Limiter enabled at the same time");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user