diff --git a/CHANGELIST.md b/CHANGELIST.md
index 1d9653fb..604c6684 100644
--- a/CHANGELIST.md
+++ b/CHANGELIST.md
@@ -45,6 +45,7 @@
- Close the log archive, if it exists
- Support checking Redumper DAT from zip; add tests
- Add Check warnings around overwriting and parsing
+- Clarification on some options
### 3.3.0 (2025-01-03)
diff --git a/MPF.Frontend/Options.cs b/MPF.Frontend/Options.cs
index 6b83150f..86486778 100644
--- a/MPF.Frontend/Options.cs
+++ b/MPF.Frontend/Options.cs
@@ -86,6 +86,7 @@ namespace MPF.Frontend
///
/// Enable purple mode for UI elements
///
+ /// This is a hidden setting
public bool EnablePurpMode
{
get { return GetBooleanSetting(Settings, "EnablePurpMode", false); }
@@ -95,6 +96,7 @@ namespace MPF.Frontend
///
/// Custom color setting
///
+ /// This is a hidden setting
public string? CustomBackgroundColor
{
get { return GetStringSetting(Settings, "CustomBackgroundColor", null); }
@@ -104,6 +106,7 @@ namespace MPF.Frontend
///
/// Custom color setting
///
+ /// This is a hidden setting
public string? CustomTextColor
{
get { return GetStringSetting(Settings, "CustomTextColor", null); }
@@ -155,7 +158,7 @@ namespace MPF.Frontend
}
///
- /// Default output path for dumps
+ /// Show the debug menu item
///
/// This is a hidden setting
public bool ShowDebugViewMenuItem