summaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2015-01-01 14:27:57 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-01 09:15:18 -0800
commite5c3799270fcc9c6726ce743f7662f5f42698f09 (patch)
tree9c1647f6c4d49dee84683d7b191e53c6225fa279 /profile.c
parentba72946b0cba2bfd0084c6d686353318a42f7ee7 (diff)
downloadsubsurface-e5c3799270fcc9c6726ce743f7662f5f42698f09.tar.gz
Fix mean depth on info box
The running depth must be divided by current time to get the average depth. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.c b/profile.c
index efc6de453..33fea504c 100644
--- a/profile.c
+++ b/profile.c
@@ -1200,7 +1200,7 @@ static void plot_string(struct plot_info *pi, struct plot_data *entry, struct me
if (entry->bearing)
put_format(b, translate("gettextFromC", "bearing: %d\n"), entry->bearing);
if (entry->running_sum) {
- depthvalue = get_depth_units(entry->running_sum / 1000, NULL, &depth_unit);
+ depthvalue = get_depth_units(entry->running_sum / entry->sec, NULL, &depth_unit);
put_format(b, translate("gettextFromC", "mean depth to here %.1f%s\n"), depthvalue, depth_unit);
}