Use positive options names internally

For clarity, store the flag resulting of the command-line options
--no-control and --no-display into "control" and "display".
This commit is contained in:
Romain Vimont
2019-06-04 21:49:26 +02:00
parent 5b56900e2b
commit c8a6783494
3 changed files with 10 additions and 13 deletions

View File

@@ -16,8 +16,8 @@ struct scrcpy_options {
bool show_touches;
bool fullscreen;
bool always_on_top;
bool no_control;
bool no_display;
bool control;
bool display;
};
bool