mirror of https://github.com/mpv-player/mpv
vo_sixel: change exit-clear handling to OPT_REPLACED
Easier to keep track of when we do want to remove it.
This commit is contained in:
parent
36ea5d7b5c
commit
1b68c5d22f
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue