summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-10-15 11:00:52 -0500
committerDudemanguy <random342@airmail.cc>2023-10-25 16:16:37 +0000
commit36de0d784fe803b39445717293a3ca7a54ba0f51 (patch)
treeceff3deafa00d5f359d18c0f05e2190e949756cc /options/options.c
parent1370ecfc1b9b477aecc552355a0ac5f8555e51ae (diff)
downloadmpv-36de0d784fe803b39445717293a3ca7a54ba0f51.tar.bz2
mpv-36de0d784fe803b39445717293a3ca7a54ba0f51.tar.xz
options: rename --watch-later-directory to --watch-later-dir
Same logic as the previous commit.
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index e1d01adbd6..17e03025d2 100644
--- a/options/options.c
+++ b/options/options.c
@@ -754,7 +754,7 @@ static const m_option_t mp_opts[] = {
OPT_BOOL(write_filename_in_watch_later_config)},
{"ignore-path-in-watch-later-config",
OPT_BOOL(ignore_path_in_watch_later_config)},
- {"watch-later-directory", OPT_STRING(watch_later_directory),
+ {"watch-later-dir", OPT_STRING(watch_later_dir),
.flags = M_OPT_FILE},
{"watch-later-options", OPT_STRINGLIST(watch_later_options)},
@@ -888,6 +888,7 @@ static const m_option_t mp_opts[] = {
{"screenshot-directory", OPT_REPLACED("screenshot-dir")},
{"sub-forced-only", OPT_REPLACED("sub-forced-events-only")},
+ {"watch-later-directory", OPT_REPLACED("watch-later-dir")},
{0}
};