# HG changeset patch # User Matti Hamalainen # Date 1621925166 -10800 # Node ID 44e3656f4c8394fdca5d8e63581bc57080f34186 # Parent 05677852afd54598b810be72542f3b20bcd2d1d4 Fix help to display correct range for frame numbers. diff -r 05677852afd5 -r 44e3656f4c83 gldragon.cpp --- a/gldragon.cpp Tue May 25 02:57:04 2021 +0300 +++ b/gldragon.cpp Tue May 25 09:46:06 2021 +0300 @@ -229,7 +229,7 @@ " Using vsync (2) will result in FPS being approximately\n" " whatever your monitor refresh rate is. The default\n" " value is 1 (no vsync).\n" - " -p Start and pause at cycle frame (max %d).\n" + " -p Start and pause at cycle frame (%d .. %d).\n" "\n" "Keyboard controls during runtime:\n" " p / space Toggle pause (does not/should not affect fps measurement)\n" @@ -238,7 +238,7 @@ "\n", argv[0], SET_DEF_WIDTH, SET_DEF_HEIGHT, - SET_FRAMES + 0, SET_FRAMES - 1 ); goto exit;