comparison eosd @ 452:1f5156093785

By default, only enable fps limiting if vsync doesn't do the job.
author Thibaut Girka <thib@sitedethib.com>
date Fri, 30 Aug 2013 20:38:02 +0200
parents b0abb05811f7
children a502887557ac
comparison
equal deleted inserted replaced
451:c034570ac785 452:1f5156093785
35 parser.add_argument('--replay', metavar='REPLAY', help='Select a replay') 35 parser.add_argument('--replay', metavar='REPLAY', help='Select a replay')
36 parser.add_argument('--save-replay', metavar='REPLAY', help='Save the upcoming game into a replay file') 36 parser.add_argument('--save-replay', metavar='REPLAY', help='Save the upcoming game into a replay file')
37 parser.add_argument('--skip-replay', action='store_true', help='Skip the replay and start to play when it’s finished') 37 parser.add_argument('--skip-replay', action='store_true', help='Skip the replay and start to play when it’s finished')
38 parser.add_argument('-b', '--boss-rush', action='store_true', help='Fight only bosses') 38 parser.add_argument('-b', '--boss-rush', action='store_true', help='Fight only bosses')
39 parser.add_argument('--single-buffer', action='store_true', help='Disable double buffering') 39 parser.add_argument('--single-buffer', action='store_true', help='Disable double buffering')
40 parser.add_argument('--fps-limit', metavar='FPS', default=60, type=int, help='Set fps limit') 40 parser.add_argument('--fps-limit', metavar='FPS', default=-1, type=int, help='Set fps limit. A value of 0 disables fps limiting, while a negative value limits to 60 fps if and only if vsync doesn’t work.')
41 parser.add_argument('--debug', action='store_true', help='Set unlimited continues, and perhaps other debug features.') 41 parser.add_argument('--debug', action='store_true', help='Set unlimited continues, and perhaps other debug features.')
42 parser.add_argument('--fixed-pipeline', action='store_true', help='Use the fixed pipeline instead of the new programmable one.') 42 parser.add_argument('--fixed-pipeline', action='store_true', help='Use the fixed pipeline instead of the new programmable one.')
43 parser.add_argument('--no-background', action='store_false', help='Disable background display (huge performance boost on slow systems).') 43 parser.add_argument('--no-background', action='store_false', help='Disable background display (huge performance boost on slow systems).')
44 parser.add_argument('--no-particles', action='store_false', help='Disable particles handling (huge performance boost on slow systems).') 44 parser.add_argument('--no-particles', action='store_false', help='Disable particles handling (huge performance boost on slow systems).')
45 parser.add_argument('--no-music', action='store_false', help='Disable background music.') 45 parser.add_argument('--no-music', action='store_false', help='Disable background music.')