Settings/Log: Print advanced settings warning on the log

Warns the user through the log if they have advanced options enabled.
This commit is contained in:
KamFretoZ 2024-12-27 19:12:47 +07:00 committed by Ty
parent 82a38a7124
commit 2167d9e4f5
1 changed files with 4 additions and 0 deletions

View File

@ -415,6 +415,10 @@ bool VMManager::Internal::CPUThreadInitialize()
if (EmuConfig.EnableDiscordPresence)
InitializeDiscordPresence();
// Check for advanced settings status and warn the user if its enabled
if (Host::GetBaseBoolSettingValue("UI", "ShowAdvancedSettings", false))
Console.Warning("Settings: Advanced Settings are enabled; only proceed if you know what you're doing! No support will be provided if you have the option enabled.");
return true;
}