mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-07-23 09:22:07 +00:00
Fix --lock-video-orientation syntax
The argument for option --lock-video-orientation has been made optional
by 5af9d0ee0f
.
With getopt_long(), contrary to mandatory arguments, optional arguments
must be given with a '=':
--lock-video-orientation 2 # wrong, parse error
--lock-video-orientation=2 # correct
This commit is contained in:
parent
16a63e0917
commit
f76fe2c0d4
2 changed files with 5 additions and 5 deletions
|
@ -51,7 +51,7 @@ static void test_options(void) {
|
|||
"--fullscreen",
|
||||
"--max-fps", "30",
|
||||
"--max-size", "1024",
|
||||
"--lock-video-orientation", "2",
|
||||
"--lock-video-orientation=2", // optional arguments require '='
|
||||
// "--no-control" is not compatible with "--turn-screen-off"
|
||||
// "--no-display" is not compatible with "--fulscreen"
|
||||
"--port", "1234:1236",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue