Remove deprecated -c option

The short option -c is deprecated since v1.11. Only the long version
(--crop) remains.
This commit is contained in:
Romain Vimont 2021-11-07 20:54:45 +01:00
parent 30d40f4e78
commit b62df7ee91
1 changed files with 1 additions and 4 deletions

View File

@ -799,7 +799,7 @@ scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]) {
optind = 0; // reset to start from the first argument in tests
int c;
while ((c = getopt_long(argc, argv, "b:c:fF:hKm:nNp:r:s:StTvV:w",
while ((c = getopt_long(argc, argv, "b:fF:hKm:nNp:r:s:StTvV:w",
long_options, NULL)) != -1) {
switch (c) {
case 'b':
@ -807,9 +807,6 @@ scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]) {
return false;
}
break;
case 'c':
LOGW("Deprecated option -c. Use --crop instead.");
// fall through
case OPT_CROP:
opts->crop = optarg;
break;