mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
82a38a7124
commit
2167d9e4f5
|
@ -415,6 +415,10 @@ bool VMManager::Internal::CPUThreadInitialize()
|
||||||
if (EmuConfig.EnableDiscordPresence)
|
if (EmuConfig.EnableDiscordPresence)
|
||||||
InitializeDiscordPresence();
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue