From 2167d9e4f56eef99f33604666c8e54d76d9dbbc4 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Fri, 27 Dec 2024 19:12:47 +0700 Subject: [PATCH] Settings/Log: Print advanced settings warning on the log Warns the user through the log if they have advanced options enabled. --- pcsx2/VMManager.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pcsx2/VMManager.cpp b/pcsx2/VMManager.cpp index cb0321c50b..162c9801f1 100644 --- a/pcsx2/VMManager.cpp +++ b/pcsx2/VMManager.cpp @@ -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; }