From e356add07c6246b8a27a5d193e2e89da4afee6ad Mon Sep 17 00:00:00 2001 From: NRK Date: Sat, 10 Sep 2022 19:30:40 +0600 Subject: rename: aa -> anti_alias --- options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index bf9bb99..3999e98 100644 --- a/options.c +++ b/options.c @@ -113,7 +113,7 @@ void parse_options(int argc, char **argv) _options.scalemode = SCALE_DOWN; _options.zoom = 1.0; - _options.aa = ANTI_ALIAS; + _options.anti_alias = ANTI_ALIAS; _options.animate = false; _options.gamma = 0; _options.slideshow = 0; @@ -244,7 +244,7 @@ void parse_options(int argc, char **argv) case OPT_AA: if (op.optarg != NULL && !STREQ(op.optarg, "no")) error(EXIT_FAILURE, 0, "Invalid argument for option --anti-alias: %s", op.optarg); - _options.aa = op.optarg == NULL; + _options.anti_alias = op.optarg == NULL; break; } } -- cgit v1.2.3-54-g00ecf