summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
Diffstat (limited to 'options')
-rw-r--r--options/options.c1
-rw-r--r--options/options.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/options/options.c b/options/options.c
index 202fb42c49..835ff21f9f 100644
--- a/options/options.c
+++ b/options/options.c
@@ -232,6 +232,7 @@ const m_option_t mp_opts[] = {
.type = &m_option_type_msglevels),
OPT_FLAG("msgcolor", msg_color, CONF_GLOBAL | CONF_PRE_PARSE),
OPT_FLAG("msgmodule", msg_module, CONF_GLOBAL),
+ OPT_FLAG("msgtime", msg_time, CONF_GLOBAL),
OPT_FLAG("identify", msg_identify, CONF_GLOBAL),
#if HAVE_PRIORITY
{"priority", &proc_priority, CONF_TYPE_STRING, 0, 0, 0, NULL},
diff --git a/options/options.h b/options/options.h
index 23be601f46..3b9ddeedc7 100644
--- a/options/options.h
+++ b/options/options.h
@@ -50,6 +50,7 @@ typedef struct MPOpts {
int msg_identify;
int msg_color;
int msg_module;
+ int msg_time;
char **reset_options;
char **lua_files;