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/zimg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/zimg.h') diff --git a/video/zimg.h b/video/zimg.h index a4f1954402..be018ca167 100644 --- a/video/zimg.h +++ b/video/zimg.h @@ -19,7 +19,7 @@ struct zimg_opts { int scaler_chroma; double scaler_chroma_params[2]; int dither; - int fast; + bool fast; int threads; }; -- cgit v1.2.3