Increase the framerate limit for the visualizer. (#490)

* Update settings.cpp

* Update settings.cpp
wilder
leg7 4 years ago committed by GitHub
parent 26ee24a938
commit 727ca95ca5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/settings.cpp

@ -248,7 +248,7 @@ bool Configuration::read(const std::vector<std::string> &config_paths, bool igno
p.add("visualizer_fps", &visualizer_fps,
"60", [](std::string v) {
uint32_t result = verbose_lexical_cast<uint32_t>(v);
boundsCheck<uint32_t>(result, 30, 144);
boundsCheck<uint32_t>(result, 30, 1000);
return result;
});
p.add("visualizer_autoscale", &visualizer_autoscale, "no", yes_no);

Loading…
Cancel
Save