From 91cc0d8cf6a2cf264c243ca3b3e99b5fd4044c29 Mon Sep 17 00:00:00 2001 From: Christoph Heinrich Date: Mon, 20 Feb 2023 04:32:50 +0100 Subject: options: transition options from OPT_FLAG to OPT_BOOL c78482045444c488bb7948305d583a55d17cd236 introduced a bool option type as a replacement for the flag type, but didn't actually transition and remove the flag type because it would have been too much mundane work. --- video/out/vo_kitty.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'video/out/vo_kitty.c') diff --git a/video/out/vo_kitty.c b/video/out/vo_kitty.c index 6a511c8c8e..7d548c7c34 100644 --- a/video/out/vo_kitty.c +++ b/video/out/vo_kitty.c @@ -79,8 +79,8 @@ static inline void write_str(const char *s) struct vo_kitty_opts { int width, height, top, left, rows, cols; - int config_clear, alt_screen; - int use_shm; + bool config_clear, alt_screen; + bool use_shm; }; struct priv { @@ -414,8 +414,8 @@ const struct vo_driver video_out_kitty = { .priv_size = sizeof(struct priv), .priv_defaults = &(const struct priv) { .shm_fd = -1, - .opts.config_clear = 1, - .opts.alt_screen = 1, + .opts.config_clear = true, + .opts.alt_screen = true, }, .options = (const m_option_t[]) { {"width", OPT_INT(opts.width)}, @@ -424,9 +424,9 @@ const struct vo_driver video_out_kitty = { {"left", OPT_INT(opts.left)}, {"rows", OPT_INT(opts.rows)}, {"cols", OPT_INT(opts.cols)}, - {"config-clear", OPT_FLAG(opts.config_clear), }, - {"alt-screen", OPT_FLAG(opts.alt_screen), }, - {"use-shm", OPT_FLAG(opts.use_shm), }, + {"config-clear", OPT_BOOL(opts.config_clear), }, + {"alt-screen", OPT_BOOL(opts.alt_screen), }, + {"use-shm", OPT_BOOL(opts.use_shm), }, {0} }, .options_prefix = "vo-kitty", -- cgit v1.2.3