Remove --fullscreen validation
Many options are meaningless if --no-display is set. We don't want to validate all possible combinations, so don't make an exception for --fullscreen.
This commit is contained in:
parent
cbde7b964a
commit
a8fd4aec9a
1 changed files with 0 additions and 5 deletions
|
@ -628,11 +628,6 @@ scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!opts->display && opts->fullscreen) {
|
|
||||||
LOGE("-f/--fullscreen-window is incompatible with -N/--no-display");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
int index = optind;
|
int index = optind;
|
||||||
if (index < argc) {
|
if (index < argc) {
|
||||||
LOGE("Unexpected additional argument: %s", argv[index]);
|
LOGE("Unexpected additional argument: %s", argv[index]);
|
||||||
|
|
Loading…
Reference in a new issue