summaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-07 08:35:35 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-07 08:37:50 -0700
commit7bbdea19ed0c634b4a990e49be7a2c8936a61818 (patch)
tree7e5117ebaf0dc565f2cd5a5be99a46266386ad93 /profile.c
parenta6d510f5f1705d2c31b93f0323937925811bb2d1 (diff)
downloadsubsurface-7bbdea19ed0c634b4a990e49be7a2c8936a61818.tar.gz
Add radio buttons for temperature and volume
.. and clean up some of the conversions. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/profile.c b/profile.c
index 5cd88885a..705d90cd6 100644
--- a/profile.c
+++ b/profile.c
@@ -357,13 +357,13 @@ static void plot_cylinder_pressure_text(struct dive *dive, cairo_t *cr,
unit = "pascal";
break;
case BAR:
- start = startp.mbar / 1000;
- end = endp.mbar / 1000;
+ start = (startp.mbar + 500) / 1000;
+ end = (endp.mbar + 500) / 1000;
unit = "bar";
break;
case PSI:
- start = startp.mbar / 68.95;
- end = endp.mbar / 68.95;
+ start = to_PSI(startp);
+ end = to_PSI(endp);
unit = "psi";
break;
}