Remove MTRSX+WCB Warning

This commit is contained in:
Asinine 2023-07-23 16:30:47 +09:30 committed by GitHub
parent 479aa7c620
commit 4148b489df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -490,8 +490,6 @@ internal static partial class LogParserResult
{
if (multiItems["fatal_error"].Any(f => f.Contains("VK_ERROR_OUT_OF_POOL_MEMORY_KHR")))
notes.Add("⚠️ `Multithreaded RSX` is enabled, please disable for this game");
else if (items["write_color_buffers"] == EnabledMark)
notes.Add("⚠️ `Multithreaded RSX` is enabled along with `Write Color Buffers` which may cause crashes");
else if (threadCount < 6)
notes.Add("⚠️ `Multithreaded RSX` is enabled on a CPU with few threads");
else
@ -1301,4 +1299,4 @@ internal static partial class LogParserResult
notes.Add(" Please disable `Force CPU Blit` for PS1 Classics");
generalNotes.Add(" PS1 Classics compatibility is subject to [official Sony emulator accuracy](https://www.psdevwiki.com/ps3/PS1_Classics_Emulator_Compatibility_List)");
}
}
}