summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-10-24 19:09:35 +0200
committerwm4 <wm4@nowhere>2015-10-24 19:09:35 +0200
commitd1a46c2c327dad53f1e8808e16c626530be163d1 (patch)
tree4ae5b4e20bfa5fbc0140e8e62564d7986a993a2d /options
parenta02f3a5dd45cb946c6b7e75c5b5349c6c4e5fdc8 (diff)
downloadmpv-d1a46c2c327dad53f1e8808e16c626530be163d1.tar.bz2
mpv-d1a46c2c327dad53f1e8808e16c626530be163d1.tar.xz
options: remove --use-text-osd
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
-rw-r--r--options/options.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/options/options.c b/options/options.c
index 4e63332444..06ffac708c 100644
--- a/options/options.c
+++ b/options/options.c
@@ -374,7 +374,6 @@ const m_option_t mp_opts[] = {
OPT_FLOATRANGE("osd-bar-w", osd_bar_w, 0, 1, 100),
OPT_FLOATRANGE("osd-bar-h", osd_bar_h, 0, 0.1, 50),
OPT_SUBSTRUCT("osd", osd_style, osd_style_conf, 0),
- OPT_FLAG("use-text-osd", use_text_osd, CONF_GLOBAL),
OPT_SUBSTRUCT("sub-text", sub_text_style, sub_style_conf, 0),
OPT_FLAG("sub-clear-on-seek", sub_clear_on_seek, 0),
@@ -715,7 +714,6 @@ const struct MPOpts mp_default_opts = {
.sub_use_margins = 1,
.ass_scale_with_window = 0,
.sub_scale_with_window = 1,
- .use_text_osd = 1,
#if HAVE_LUA
.lua_load_osc = 1,
.lua_load_ytdl = 1,
diff --git a/options/options.h b/options/options.h
index e76c0cbf0c..1379ce3416 100644
--- a/options/options.h
+++ b/options/options.h
@@ -234,7 +234,6 @@ typedef struct MPOpts {
char **sub_paths;
int sub_auto;
int audiofile_auto;
- int use_text_osd;
int osd_bar_visible;
float osd_bar_align_x;
float osd_bar_align_y;