diff options
author | Michael Andreen <harv@ruin.nu> | 2013-07-26 20:51:27 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-09-19 13:31:31 -0500 |
commit | 169d9e9c015efa779ec67abdfb27ca6c462c3d63 (patch) | |
tree | a70df71e4d31d26ce0bfa04936eda84dc7f66d21 /libdivecomputer.c | |
parent | 583cea0e2ca78a9dda6d2e6f4ba4d0af3372b435 (diff) | |
download | subsurface-169d9e9c015efa779ec67abdfb27ca6c462c3d63.tar.gz |
Identify below floor event type properly.
This event is on when accumulating deco time. Once you reach the floor
deco time will start decreasing and the event will stop. Going below the
floor again will re-activate the event.
Also identify event type 13 in DM4 imports as airtime.
Signed-off-by: Michael Andreen <harv@ruin.nu>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'libdivecomputer.c')
-rw-r--r-- | libdivecomputer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdivecomputer.c b/libdivecomputer.c index 0a8ba0487..6f2f1f66c 100644 --- a/libdivecomputer.c +++ b/libdivecomputer.c @@ -153,7 +153,7 @@ static void handle_event(struct divecomputer *dc, struct sample *sample, dc_samp N_("none"), N_("deco stop"), N_("rbt"), N_("ascent"), N_("ceiling"), N_("workload"), N_("transmitter"), N_("violation"), N_("bookmark"), N_("surface"), N_("safety stop"), N_("gaschange"), N_("safety stop (voluntary)"), N_("safety stop (mandatory)"), - N_("deepstop"), N_("ceiling (safety stop)"), N_("unknown"), N_("divetime"), + N_("deepstop"), N_("ceiling (safety stop)"), N_("below floor"), N_("divetime"), N_("maxdepth"), N_("OLF"), N_("PO2"), N_("airtime"), N_("rgbm"), N_("heading"), N_("tissue level warning"), N_("gaschange"), N_("non stop time") }; |