From 8ebce331fe2039bf8b897b04f73ce50867bd170c Mon Sep 17 00:00:00 2001 From: 13xforever Date: Thu, 21 Aug 2025 14:28:05 +0500 Subject: [PATCH] update save state notes from info to warn --- .../LogParserResultFormatter.GeneralNotesSection.cs | 2 +- .../LogParserResultFormatter.WeirdSettingsSection.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs index ee13b249..7771653c 100644 --- a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs +++ b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs @@ -438,7 +438,7 @@ internal static partial class LogParserResult notes.Add("❌ PS3 firmware is missing or corrupted"); if (items["booting_savestate"] is EnabledMark) - notes.Add("ℹ️ Game was booted from a save state"); + notes.Add("⚠️ Game was booted from a save state"); if (multiItems["game_mod"] is { Length: >0 } mods) { diff --git a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs index 71dad30c..f856d201 100644 --- a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs +++ b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs @@ -564,7 +564,7 @@ internal static partial class LogParserResult if (items["start_paused_savestate"] is EnabledMark) notes.Add("❓ `Pause emulation after loading savestates` is disabled"); if (items["compatible_savestate"] is not EnabledMark) - notes.Add("ℹ️ If you have weird compatibility issues after boot, try enabling `SPU-Compatible Savestate Mode`"); + notes.Add("⚠️ If you have weird compatibility issues after boot, try enabling `SPU-Compatible Savestate Mode`"); } if (items["custom_config"] is EnabledMark && notes.Count > 0)