summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
Diffstat (limited to 'options')
-rw-r--r--options/options.c3
-rw-r--r--options/options.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/options/options.c b/options/options.c
index a57b5fffb4..e245434052 100644
--- a/options/options.c
+++ b/options/options.c
@@ -521,6 +521,9 @@ const m_option_t mp_opts[] = {
OPT_STRING("osd-playing-msg", osd_playing_msg, 0),
OPT_STRING("term-status-msg", status_msg, 0),
OPT_STRING("osd-status-msg", osd_status_msg, 0),
+ OPT_STRING("osd-msg1", osd_msg[0], 0),
+ OPT_STRING("osd-msg2", osd_msg[1], 0),
+ OPT_STRING("osd-msg3", osd_msg[2], 0),
OPT_FLAG("idle", player_idle_mode, M_OPT_GLOBAL),
OPT_FLAG("input-terminal", consolecontrols, CONF_GLOBAL),
diff --git a/options/options.h b/options/options.h
index 967982ea5c..aeb404ecfe 100644
--- a/options/options.h
+++ b/options/options.h
@@ -148,6 +148,7 @@ typedef struct MPOpts {
char *osd_playing_msg;
char *status_msg;
char *osd_status_msg;
+ char *osd_msg[3];
char *heartbeat_cmd;
float heartbeat_interval;
int player_idle_mode;