diff options
author | Robert C. Helling <helling@atdotde.de> | 2015-08-23 15:58:50 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-08-23 07:28:06 -0700 |
commit | 7bfc8bc1fe6e37f7d1f6a1e3fbd4390cf640e8eb (patch) | |
tree | 1c932b5ed4c8140edab07f4ff8cebb33ba4d0df6 /profile.c | |
parent | 8909dbbfd38c3bbc89e96ae6b904111946864f51 (diff) | |
download | subsurface-7bfc8bc1fe6e37f7d1f6a1e3fbd4390cf640e8eb.tar.gz |
Show tissue ceilings in tenth of m/ft
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1209,7 +1209,7 @@ static void plot_string(struct plot_info *pi, struct plot_data *entry, struct me for (k = 0; k < 16; k++) { if (entry->ceilings[k]) { depthvalue = get_depth_units(entry->ceilings[k], NULL, &depth_unit); - put_format(b, translate("gettextFromC", "Tissue %.0fmin: %.0f%s\n"), buehlmann_N2_t_halflife[k], depthvalue, depth_unit); + put_format(b, translate("gettextFromC", "Tissue %.0fmin: %.1f%s\n"), buehlmann_N2_t_halflife[k], depthvalue, depth_unit); } } } |