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 authored and F0bes committed Dec 28, 2024
1 parent 82a38a7 commit 2167d9e
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 2167d9e

Please sign in to comment.