lower error level for frame pacing notes

This commit is contained in:
13xforever 2020-02-16 16:11:59 +05:00
parent a2bcc6e7f0
commit 2e17f30fed

View File

@ -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");
}