" The mode can also be changed using the ESC sequences:\n"
" [?658467;65536h (color), [?658467;65537h (mono).\n"
" -W - Toggle X zoom between wide (2x) and condensed (1.5x)\n"
- " -r - Set the maximum screen refresh speedin microseconds.\n"
- " Limits: 11111 (90fps) - 100000 (10fps). This is also a\n"
+ " -r - Set the maximum screen refresh speed in microseconds.\n"
+ " Limits: 11111 (90fps) - 200000 (5fps). This is also a\n"
" general timing source that also affects the text/cursor\n"
" blinking rate settings -B/-T and the speed of smooth\n"
" scrolling when enabled. Low settings save CPU but will\n"
cfg_condensed = !cfg_condensed;
break;
case 'r':
- if ((i = atoi(optarg)) >= 11111 && i <= 100000)
+ if ((i = atoi(optarg)) >= 11111 && i <= 200000)
cfg_refreshspeed = i;
break;
case 'R':