summaryrefslogtreecommitdiffstats
path: root/parse-xml.c
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2013-09-18 09:06:37 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-09-18 11:59:13 -0500
commitb75aee33fec6c624c0746c10006fa7098d24c582 (patch)
tree5981d244f4e73b3860b92eaa6ddbe57eadddf5f6 /parse-xml.c
parent608209fff23417f77526bef836bb505bc05c7eff (diff)
downloadsubsurface-b75aee33fec6c624c0746c10006fa7098d24c582.tar.gz
Use the right event type
11 is SAMPLE_EVENT_GASCHANGE, and thats the one that doesn't contain any He-part. The type where He and O2 is packed togeather is 25, SAMPLE_EVENT_GASCHANGE2. Left to implement is to figure out the type of the event when we read the xml, so we can create the right type there. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'parse-xml.c')
-rw-r--r--parse-xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-xml.c b/parse-xml.c
index aa2f737ec..5c031fcac 100644
--- a/parse-xml.c
+++ b/parse-xml.c
@@ -776,7 +776,7 @@ void add_gas_switch_event(struct dive *dive, struct divecomputer *dc, int second
he = (he+5) / 10;
value = o2 + (he << 16);
- add_event(dc, seconds, 11, 0, value, "gaschange");
+ add_event(dc, seconds, 25, 0, value, "gaschange"); /* SAMPLE_EVENT_GASCHANGE2 */
}
static void get_cylinderindex(char *buffer, void *_i)