From 426dfbf21d9518fc8b325fc1ccf106f3b03e33c1 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Sat, 11 Mar 2023 16:32:53 +0100 Subject: [PATCH] Remove dead code about the deprecated -F option The -F option was already removed. --- app/src/cli.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/src/cli.c b/app/src/cli.c index fc5f0a2f..016b07d7 100644 --- a/app/src/cli.c +++ b/app/src/cli.c @@ -1564,9 +1564,6 @@ parse_args_with_getopt(struct scrcpy_cli_args *args, int argc, char *argv[], case 'f': opts->fullscreen = true; break; - case 'F': - LOGW("Deprecated option -F. Use --record-format instead."); - // fall through case OPT_RECORD_FORMAT: if (!parse_record_format(optarg, &opts->record_format)) { return false;