From 707b88d7bc2a3ca54cb3baa9102b9165045f08fd Mon Sep 17 00:00:00 2001 From: 13xforever Date: Tue, 27 Jan 2026 11:56:32 +0500 Subject: [PATCH] Update log notes for rsx fifo accuracy --- CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs | 1 + CompatBot/EventHandlers/LogParsing/LogParser.RegexPatterns.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs b/CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs index 20fa4802..c4a776c9 100644 --- a/CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs +++ b/CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs @@ -78,6 +78,7 @@ internal partial class LogParser ["Accurate PUTLLUC:"] = PutLlucMode(), ["Accurate RSX reservation access:"] = RsxReservationAccessMode(), ["RSX FIFO Accuracy:"] = RsxFifoMode(), + ["RSX FIFO Fetch Accuracy:"] = RsxFifoMode(), ["Debug Console Mode:"] = DebugConsoleMode(), ["Lib Loader:"] = LibLoaderMode(), ["Hook static functions:"] = HookStaticFunctions(), diff --git a/CompatBot/EventHandlers/LogParsing/LogParser.RegexPatterns.cs b/CompatBot/EventHandlers/LogParsing/LogParser.RegexPatterns.cs index 879d4dc9..8940a28d 100644 --- a/CompatBot/EventHandlers/LogParsing/LogParser.RegexPatterns.cs +++ b/CompatBot/EventHandlers/LogParsing/LogParser.RegexPatterns.cs @@ -103,7 +103,7 @@ internal partial class LogParser private static partial Regex PutLlucMode(); [GeneratedRegex(@"Accurate RSX reservation access: (?[^\r\n]*?)\r?$", DefaultOptions)] private static partial Regex RsxReservationAccessMode(); - [GeneratedRegex(@"RSX FIFO Accuracy: (?[^\r\n]*?)\r?$", DefaultOptions)] + [GeneratedRegex(@"RSX FIFO (Fetch )?Accuracy: (?[^\r\n]*?)\r?$", DefaultOptions)] private static partial Regex RsxFifoMode(); [GeneratedRegex(@"Debug Console Mode: (?[^\r\n]*?)\r?$", DefaultOptions)] private static partial Regex DebugConsoleMode();