summaryrefslogtreecommitdiffstats
path: root/print.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-21 12:12:54 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-21 12:12:54 -0700
commit515a9171523f7d8aa85f2caab262ba7d6320c33c (patch)
treed1f49227a67701bacbba0679839fcba0d7b8f9d0 /print.c
parent184eecf7c0dbcbdecba097411828afaac30773aa (diff)
downloadsubsurface-515a9171523f7d8aa85f2caab262ba7d6320c33c.tar.gz
Add helper function for doing depth unit calculations
.. and use it for printing too. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'print.c')
-rw-r--r--print.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/print.c b/print.c
index 8d3bc6150..704ecaf66 100644
--- a/print.c
+++ b/print.c
@@ -26,7 +26,9 @@ static void set_font(PangoLayout *layout, PangoFontDescription *font, double siz
*/
static void show_dive_text(struct dive *dive, cairo_t *cr, double w, double h, PangoFontDescription *font)
{
- int len, width, height, maxwidth, maxheight;
+ double depth;
+ const char *unit;
+ int len, decimals, width, height, maxwidth, maxheight;
PangoLayout *layout;
struct tm *tm;
char buffer[1024], divenr[20];
@@ -64,11 +66,12 @@ static void show_dive_text(struct dive *dive, cairo_t *cr, double w, double h, P
* with the depth/duration information. Need to mask that or
* create a box or something.
*/
+ depth = get_depth_units(dive->maxdepth.mm, &decimals, &unit);
snprintf(buffer, sizeof(buffer),
- "Max depth: %d ft\n"
+ "Max depth: %.*f %s\n"
"Duration: %d:%02d\n"
"%s",
- to_feet(dive->maxdepth),
+ decimals, depth, unit,
dive->duration.seconds / 60,
dive->duration.seconds % 60,
dive->buddy ? :"");