From ebd0bdbbf8fbcfc2742a3b62909fe7f761a30890 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 22 Mar 2025 20:42:34 +0100 Subject: Misc stuff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/gamma-drm.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/gamma-drm.c') diff --git a/src/gamma-drm.c b/src/gamma-drm.c index 2098e0d..1713024 100644 --- a/src/gamma-drm.c +++ b/src/gamma-drm.c @@ -221,7 +221,7 @@ drm_print_help(FILE *f) /* TRANSLATORS: DRM help output left column must not be translated */ fputs(_(" card=N\tGraphics card to apply adjustments to\n" - " crtc=N\tCRTC to apply adjustments to\n"), f); + " crtc=N\tCRTC to apply adjustments to\n"), f); /* TODO list is not supported */ fputs("\n", f); } @@ -232,10 +232,14 @@ drm_set_option(struct gamma_state *state, const char *key, const char *value) if (!strcasecmp(key, "card")) { state->card_num = atoi(value); } else if (!strcasecmp(key, "crtc")) { - state->crtc_num = atoi(value); - if (state->crtc_num < 0) { - weprintf(_("CRTC must be a non-negative integer")); - return -1; + if (!strcasecmp(value, "all")) { + state->crtc_num = -1; + } else { + state->crtc_num = atoi(value); + if (state->crtc_num < 0) { + weprintf(_("CRTC must be a non-negative integer")); + return -1; + } } } else { weprintf(_("Unknown method parameter: `%s'."), key); -- cgit v1.2.3-70-g09d2