summaryrefslogtreecommitdiffstats
path: root/subsurface-core/save-html.c
diff options
context:
space:
mode:
Diffstat (limited to 'subsurface-core/save-html.c')
-rw-r--r--subsurface-core/save-html.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/subsurface-core/save-html.c b/subsurface-core/save-html.c
index 64ce94f66..5fc5b000a 100644
--- a/subsurface-core/save-html.c
+++ b/subsurface-core/save-html.c
@@ -259,6 +259,29 @@ void put_HTML_time(struct membuffer *b, struct dive *dive, const char *pre, cons
put_format(b, "%s%02u:%02u:%02u%s", pre, tm.tm_hour, tm.tm_min, tm.tm_sec, post);
}
+void put_HTML_depth(struct membuffer *b, struct dive *dive, const char *pre, const char *post)
+{
+ const char *unit;
+ double value;
+ struct units *units_p = get_units();
+
+ if (!dive->maxdepth.mm) {
+ put_format(b, "%s--%s", pre, post);
+ return;
+ }
+ value = get_depth_units(dive->maxdepth.mm, NULL, &unit);
+
+ switch (units_p->length) {
+ case METERS:
+ default:
+ put_format(b, "%s%.1f %s%s", pre, value, unit, post);
+ break;
+ case FEET:
+ put_format(b, "%s%.0f %s%s", pre, value, unit, post);
+ break;
+ }
+}
+
void put_HTML_airtemp(struct membuffer *b, struct dive *dive, const char *pre, const char *post)
{
const char *unit;