summaryrefslogtreecommitdiffstats
path: root/planner.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-19 15:10:01 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-19 15:10:01 -0800
commitac38aa02431377086c83308b028214b3e66edf8b (patch)
treed952e943c8cf26448a37516e243dd30a929191db /planner.c
parent852772079472de6afa9e5d1fc88dfe81857798c4 (diff)
downloadsubsurface-ac38aa02431377086c83308b028214b3e66edf8b.tar.gz
Planner: fix incorrect gas change event
We stored the He permille instead of the He percentage. But for most casual testing this was hidden by the previous bug. Reported-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'planner.c')
-rw-r--r--planner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/planner.c b/planner.c
index 1057bea13..ee13b8bd8 100644
--- a/planner.c
+++ b/planner.c
@@ -294,7 +294,7 @@ struct dive *create_dive_from_plan(struct diveplan *diveplan)
int planhe = (he + 5) / 10 * 10;
int value;
add_gas(dive, plano2, planhe);
- value = (plano2 / 10) | (planhe << 16);
+ value = (plano2 / 10) | ((planhe / 10) << 16);
add_event(dc, lasttime, 25, 0, value, "gaschange"); // SAMPLE_EVENT_GASCHANGE2
oldo2 = o2; oldhe = he;
}