Remove the "uniform" config option, it's broken anyway
authorparasti <parasti@78b8d119-cf0a-0410-b17c-f493084dd1d7>
Thu, 7 Oct 2010 18:34:54 +0000 (18:34 +0000)
committerparasti <parasti@78b8d119-cf0a-0410-b17c-f493084dd1d7>
Thu, 7 Oct 2010 18:34:54 +0000 (18:34 +0000)
(With apologies to rlk.)

git-svn-id: https://s.snth.net/svn/neverball/trunk@3296 78b8d119-cf0a-0410-b17c-f493084dd1d7

doc/MANUAL
share/config.c
share/config.h

index fce8b40..10c4f39 100644 (file)
@@ -301,28 +301,6 @@ values follow.
         statistics of  the current  frame time  and frames-per-second,
         averaged over 250 milliseconds.  Most people won't need this.
 
-    uniform 0
-
-        This  key controls  the  frequency of  graphical updates  with
-        respect to physics updates.
-
-        When  uniform is  N, then  there  will be  exactly N  physical
-        updates per graphics update, regardless of the passage of real
-        time.  So for example, if uniform is 1 then you will see every
-        physics update  rendered exactly once.   The default is  0 and
-        the option is disabled.
-
-        A further functionality  is built atop the  uniform option: if
-        the  uniform value  is  negative  then the  game  will take  a
-        screenshot  at  each  frame.   This  may  be  used  to  record
-        high-quality movies of replays.  Set uniform to -3 and start a
-        replay using  the --replay command  line option, and  you will
-        find a 30FPS movie written as a series of PNGs.
-
-        On an unfortunate note: audio is handled in a separate thread,
-        and there is no support for outputting audio synchronized with
-        a movie created in this fashion.
-
     screenshot 0
 
         This key holds  the current screen-shot index.   The number is
index 1d94217..c2ed447 100644 (file)
@@ -97,7 +97,6 @@ int CONFIG_ROTATE_FAST;
 int CONFIG_ROTATE_SLOW;
 int CONFIG_CHEAT;
 int CONFIG_STATS;
-int CONFIG_UNIFORM;
 int CONFIG_SCREENSHOT;
 int CONFIG_LOCK_GOALS;
 
@@ -193,7 +192,6 @@ static struct
     { &CONFIG_ROTATE_SLOW, "rotate_slow", 150 },
     { &CONFIG_CHEAT,       "cheat",       0 },
     { &CONFIG_STATS,       "stats",       0 },
-    { &CONFIG_UNIFORM,     "uniform",     0 },
     { &CONFIG_SCREENSHOT,  "screenshot",  0 },
     { &CONFIG_LOCK_GOALS,  "lock_goals",  0 }
 };
index 8a83ffd..4716723 100644 (file)
@@ -103,7 +103,6 @@ extern int CONFIG_ROTATE_FAST;
 extern int CONFIG_ROTATE_SLOW;
 extern int CONFIG_CHEAT;
 extern int CONFIG_STATS;
-extern int CONFIG_UNIFORM;
 extern int CONFIG_SCREENSHOT;
 extern int CONFIG_LOCK_GOALS;