add missin break that was causing the yres to leak into the overlay option

This commit is contained in:
uvos 2023-11-18 14:18:44 +01:00
parent 940b31199d
commit 28c560db46

View File

@ -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;