From 9f22ea1c0e3f9ce5c7cb951336615b0dbd378a96 Mon Sep 17 00:00:00 2001 From: zicodxx <> Date: Sat, 20 Jan 2007 12:42:49 +0000 Subject: [PATCH] corrected -maxfps switch: MAX_FPS is 80, not 100 --- d2x.ini | 2 +- dxx-changelog.txt | 1 + main/inferno.c | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/d2x.ini b/d2x.ini index 2a415ad72..3ac66fbaa 100755 --- a/d2x.ini +++ b/d2x.ini @@ -1,7 +1,7 @@ System Options: ;-fps Enable FPS indicator by default -;-maxfps Set maximum framerate (1-100) +;-maxfps Set maximum framerate (1-80) ;-hogdir set shared data directory to ;-nohogdir don't try to use shared data directory ;-userdir set user dir to instead of $HOME/.d2x-rebirth diff --git a/dxx-changelog.txt b/dxx-changelog.txt index aceaad2ff..b52f75f2f 100755 --- a/dxx-changelog.txt +++ b/dxx-changelog.txt @@ -4,6 +4,7 @@ D2X-Rebirth Changelog -------- main/automap.c: for OGL don't display background bitmap if screen height < 400 because it won't fit - just draw grey; adjusted level name alignment in secret levels main/render.c: removed inaccurate 4D hack +d2x.ini, main/inferno.c: corrected -maxfps switch: MAX_FPS is 80, not 100 20070119 -------- diff --git a/main/inferno.c b/main/inferno.c index 34439d09d..9b941d178 100755 --- a/main/inferno.c +++ b/main/inferno.c @@ -179,7 +179,7 @@ void print_commandline_help() { printf( "\n System Options:\n\n"); printf( " -fps %s\n", "Enable FPS indicator by default"); // ZICO - would be good, right? - printf( " -maxfps %s\n", "Set maximum framerate (1-100)"); + printf( " -maxfps %s\n", "Set maximum framerate (1-80)"); printf( " -hogdir %s\n", "set shared data directory to "); #ifdef __unix__ printf( " -nohogdir %s\n", "don't try to use shared data directory");