summaryrefslogtreecommitdiffstats
path: root/options/m_config.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-08-30 23:47:09 +0200
committerwm4 <wm4@nowhere>2016-08-30 23:47:09 +0200
commit5f88e6a0db292d272b3dc8f66c257c27327d1733 (patch)
treefe6f5d82a6656c97d4b49d61d73571812f03a498 /options/m_config.h
parent3bb134969eb624e859a546fd7142fe2eae076346 (diff)
downloadmpv-5f88e6a0db292d272b3dc8f66c257c27327d1733.tar.bz2
mpv-5f88e6a0db292d272b3dc8f66c257c27327d1733.tar.xz
m_config: rename is_generated to is_hidden
More appropriate. Originally it really was for automatically added options, but now it even needed some stupid comments to indicate that it was used for simply hiding options.
Diffstat (limited to 'options/m_config.h')
-rw-r--r--options/m_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/m_config.h b/options/m_config.h
index 5937a4492e..af8ab421f0 100644
--- a/options/m_config.h
+++ b/options/m_config.h
@@ -37,7 +37,7 @@ struct mp_log;
// Config option
struct m_config_option {
- bool is_generated : 1; // Automatically added ("no-" options)
+ bool is_hidden : 1; // Does not show up in help
bool is_set_from_cmdline : 1; // Set by user from command line
bool is_set_locally : 1; // Has a backup entry
bool warning_was_printed : 1;