System: Reduce force-displayed-warning scope

Please don't make me regret this.
This commit is contained in:
Stenzek 2024-09-10 23:53:39 +10:00
parent 3027f9235c
commit f60c7b58b0
No known key found for this signature in database
1 changed files with 3 additions and 2 deletions

View File

@ -4546,7 +4546,7 @@ void System::WarnAboutUnsafeSettings()
LargeString messages;
auto append = [&messages](const char* icon, std::string_view msg) { messages.append_format("{} {}\n", icon, msg); };
if (!g_settings.disable_all_enhancements)
if (!g_settings.disable_all_enhancements && ImGuiManager::IsShowingOSDMessages())
{
if (g_settings.cpu_overclock_active)
{
@ -4595,7 +4595,8 @@ void System::WarnAboutUnsafeSettings()
TRANSLATE_SV("System", "8MB RAM is enabled, this may be incompatible with some games."));
}
}
else
if (g_settings.disable_all_enhancements)
{
append(ICON_EMOJI_WARNING, TRANSLATE_SV("System", "All enhancements are currently disabled."));