From 2e17f30fed28401f001324c943e1e4da1f9640fc Mon Sep 17 00:00:00 2001 From: 13xforever Date: Sun, 16 Feb 2020 16:11:59 +0500 Subject: [PATCH] lower error level for frame pacing notes --- .../LogParserResultFormatter.WeirdSettingsSection.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs index d52c151f..877db271 100644 --- a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs +++ b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs @@ -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"); }