summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-05-06 15:27:00 +0200
committerwm4 <wm4@nowhere>2020-05-06 15:27:25 +0200
commitf77a4450b4f1c665f92e2f9917482a97650437c6 (patch)
tree71f5b213bad6076f46cf31c81a79e75314b80f29 /options/options.c
parent12451ac7ebfd6dd90e1425f065785dc2654fcf3c (diff)
downloadmpv-f77a4450b4f1c665f92e2f9917482a97650437c6.tar.bz2
mpv-f77a4450b4f1c665f92e2f9917482a97650437c6.tar.xz
options: don't trigger bool "compact" path for --loop-file
In theory an incompatible change, but I think it's for the better. Impact should be relatively low. I hope. Fixes: #7676
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/options/options.c b/options/options.c
index 881810589d..ac18960af0 100644
--- a/options/options.c
+++ b/options/options.c
@@ -648,8 +648,8 @@ static const m_option_t mp_opts[] = {
M_RANGE(1, 10000)},
{"loop-file", OPT_CHOICE(loop_file,
{"no", 0},
- {"yes", -1},
- {"inf", -1}),
+ {"inf", -1},
+ {"yes", -1}),
M_RANGE(0, 10000)},
{"loop", OPT_ALIAS("loop-file")},