From 28c560db46bc0067a765483f2a14e0547fa721ec Mon Sep 17 00:00:00 2001 From: uvos Date: Sat, 18 Nov 2023 14:18:44 +0100 Subject: [PATCH] add missin break that was causing the yres to leak into the overlay option --- options.h | 1 + 1 file changed, 1 insertion(+) diff --git a/options.h b/options.h index 8d1ff3a..da68ec0 100644 --- a/options.h +++ b/options.h @@ -49,6 +49,7 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) break; case 'y': config->Yres = std::stoi(arg); + break; case 'o': config->overlay = arg; break;