summaryrefslogtreecommitdiffstats
path: root/options/m_config.c
diff options
context:
space:
mode:
Diffstat (limited to 'options/m_config.c')
-rw-r--r--options/m_config.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/options/m_config.c b/options/m_config.c
index 4659c9aa21..08465df97f 100644
--- a/options/m_config.c
+++ b/options/m_config.c
@@ -997,9 +997,11 @@ void m_config_print_option_list(const struct m_config *config, const char *name)
talloc_free(def);
}
if (opt->flags & M_OPT_NOCFG)
- MP_INFO(config, " [nocfg]");
+ MP_INFO(config, " [not in config files]");
if (opt->flags & M_OPT_FILE)
MP_INFO(config, " [file]");
+ if (opt->flags & M_OPT_FIXED)
+ MP_INFO(config, " [no runtime changes]");
MP_INFO(config, "\n");
count++;
}