Skip to content

Commit

Permalink
Update --help text about FPS-related options
Browse files Browse the repository at this point in the history
  • Loading branch information
jyrkive authored and GregoryLundberg committed Nov 30, 2017
1 parent d335460 commit a64cc4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commandline_options.cpp
Expand Up @@ -212,9 +212,9 @@ commandline_options::commandline_options (const std::vector<std::string>& args)

po::options_description display_opts("Display options");
display_opts.add_options()
("fps", "displays the number of frames per second the game is currently running at, in a corner of the screen.")
("fps", "displays the number of frames per second the game is currently running at, in a corner of the screen. Min/avg/max don't take the FPS limiter into account, act does.")
("fullscreen,f", "runs the game in full screen mode.")
("max-fps", po::value<int>(), "the maximum fps the game tries to run at. Values should be between 1 and 1000, the default is 50.")
("max-fps", po::value<int>(), "the maximum fps the game tries to run at. Values should be between 1 and 1000, the default is the display's refresh rate.")
("new-widgets", "there is a new WIP widget toolkit this switch enables the new toolkit (VERY EXPERIMENTAL don't file bug reports since most are known). Parts of the library are deemed stable and will work without this switch.")
("resolution,r", po::value<std::string>(), "sets the screen resolution. <arg> should have format XxY. Example: --resolution 800x600")
("windowed,w", "runs the game in windowed mode.")
Expand Down

0 comments on commit a64cc4f

Please sign in to comment.