Disable FPS counter when no video playback

There is no frame rate to count.
window.10
Romain Vimont 4 weeks ago
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…
Cancel
Save