]> git.tdb.fi Git - ext/subsurface.git/commitdiff
use increments that make sense for 600 seconds
authorMaximilian Güntner <maximilian.guentner@gmail.com>
Sat, 9 Jun 2012 13:05:41 +0000 (15:05 +0200)
committerMaximilian Güntner <maximilian.guentner@gmail.com>
Sat, 9 Jun 2012 13:05:41 +0000 (15:05 +0200)
599/12 = 50, no need to use 5*60.

Signed-off-by: Maximilian Güntner <maximilian.guentner@gmail.com>
profile.c

index 4a505bd670f1726550f669d5d4d7ab95ca252214..728409ec2dd4550c5fa3efaee61a9fd6c4c106de 100644 (file)
--- a/profile.c
+++ b/profile.c
@@ -461,9 +461,9 @@ static void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi
   if (maxtime < 600)
   {
     increments[0] = 10;
-    increments[1] = 30;
-    increments[2] = 60;
-    increments[3] = 5*60;
+    increments[1] = 20;
+    increments[2] = 30;
+    increments[3] = 60;
   }
        /* Time markers: at most every 5 min, but no more than 12 markers
         * and for convenience we do 5, 10, 15 or 30 min intervals.