Skip to content

Commit

Permalink
Settings/Log: Print advanced settings warning on the log
Browse files Browse the repository at this point in the history
Warns the user through the log if they have advanced options enabled.
  • Loading branch information
kamfretoz committed Dec 27, 2024
1 parent f0f2b01 commit 919ec6a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pcsx2/VMManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 919ec6a

Please sign in to comment.