summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-05 01:10:48 +0200
committerwm4 <wm4@nowhere>2014-06-05 01:10:48 +0200
commitb4c1699aafc7be95d06d0c5936d2b77234d2ec2d (patch)
tree8c3181939ea4b25b572dd75e5da26ddefd99d405 /options
parent015399f6967c683eb27265f81c4e93a61bc1b389 (diff)
downloadmpv-b4c1699aafc7be95d06d0c5936d2b77234d2ec2d.tar.bz2
mpv-b4c1699aafc7be95d06d0c5936d2b77234d2ec2d.tar.xz
sub: remove old style override option
Didn't work too well.
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index cb0ddd9c30..3cebd0c5fd 100644
--- a/options/options.c
+++ b/options/options.c
@@ -427,7 +427,7 @@ const m_option_t mp_opts[] = {
OPT_CHOICE("ass-shaper", ass_shaper, 0,
({"simple", 0}, {"complex", 1})),
OPT_CHOICE("ass-style-override", ass_style_override, 0,
- ({"no", 0}, {"yes", 1}, {"force-default", 2}, {"force", 3})),
+ ({"no", 0}, {"yes", 1}, {"force", 3})),
OPT_FLAG("osd-bar", osd_bar_visible, 0),
OPT_FLOATRANGE("osd-bar-align-x", osd_bar_align_x, 0, -1.0, +1.0),
OPT_FLOATRANGE("osd-bar-align-y", osd_bar_align_y, 0, -1.0, +1.0),