mirror of https://github.com/Genymobile/scrcpy
Disable FPS counter when no video playback
There is no frame rate to count.
This commit is contained in:
parent
22d78e8a82
commit
cca2c9ffb7
|
@ -2811,6 +2811,11 @@ parse_args_with_getopt(struct scrcpy_cli_args *args, int argc, char *argv[],
|
|||
}
|
||||
# endif
|
||||
|
||||
if (opts->start_fps_counter && !opts->video_playback) {
|
||||
LOGW("--print-fps has no effect without video playback");
|
||||
opts->start_fps_counter = false;
|
||||
}
|
||||
|
||||
if (otg) {
|
||||
// OTG mode is compatible with only very few options.
|
||||
// Only report obvious errors.
|
||||
|
|
Loading…
Reference in New Issue