summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-09-19 22:17:08 -0500
committerDudemanguy <random342@airmail.cc>2023-09-21 16:06:29 +0000
commit1b68c5d22f7495f23ea1dce20852390c26907c5a (patch)
treeca203248844a32d8d50b882f3e9f3a79f97b4a06 /video
parent36ea5d7b5cafabba605aaa334017c48b27d6f5be (diff)
downloadmpv-1b68c5d22f7495f23ea1dce20852390c26907c5a.tar.bz2
mpv-1b68c5d22f7495f23ea1dce20852390c26907c5a.tar.xz
vo_sixel: change exit-clear handling to OPT_REPLACED
Easier to keep track of when we do want to remove it.
Diffstat (limited to 'video')
-rw-r--r--video/out/vo_sixel.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/video/out/vo_sixel.c b/video/out/vo_sixel.c
index dabf43f4ef..e05c45582d 100644
--- a/video/out/vo_sixel.c
+++ b/video/out/vo_sixel.c
@@ -618,10 +618,9 @@ const struct vo_driver video_out_sixel = {
{"rows", OPT_INT(opts.rows)},
{"cols", OPT_INT(opts.cols)},
{"config-clear", OPT_BOOL(opts.config_clear), },
- {"exit-clear", OPT_BOOL(opts.alt_screen),
- .deprecation_message = "replaced by --vo-sixel-alt-screen"},
{"alt-screen", OPT_BOOL(opts.alt_screen), },
{"buffered", OPT_BOOL(opts.buffered), },
+ {"exit-clear", OPT_REPLACED("vo-sixel-alt-screen")},
{0}
},
.options_prefix = "vo-sixel",