summaryrefslogtreecommitdiffstats
path: root/core/deco.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2021-02-12 17:39:46 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2021-02-17 07:26:55 -0800
commit93ecad1b0413645ba59ffe2e50c3636d8673ccb5 (patch)
treec6b7d2aef7fd8aafa2a0570ca1ffa3168d85f736 /core/deco.h
parent9fb37ea27f757c76324f9a101a54133cedd71922 (diff)
downloadsubsurface-93ecad1b0413645ba59ffe2e50c3636d8673ccb5.tar.gz
planner: pass in_planner argument to add_segment()
To remove reliance on global state, pass an "in_planner" argument to add_segment(). Thus, calls to in_planner() can be removed. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/deco.h')
-rw-r--r--core/deco.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/deco.h b/core/deco.h
index 29a492c93..f8aa73abd 100644
--- a/core/deco.h
+++ b/core/deco.h
@@ -65,7 +65,7 @@ extern double tissue_tolerance_calc(struct deco_state *ds, const struct dive *di
extern void calc_crushing_pressure(struct deco_state *ds, double pressure);
extern void vpmb_start_gradient(struct deco_state *ds);
extern void clear_vpmb_state(struct deco_state *ds);
-extern void add_segment(struct deco_state *ds, double pressure, struct gasmix gasmix, int period_in_seconds, int setpoint, enum divemode_t divemode, int sac);
+extern void add_segment(struct deco_state *ds, double pressure, struct gasmix gasmix, int period_in_seconds, int setpoint, enum divemode_t divemode, int sac, bool in_planner);
extern double regressiona(const struct deco_state *ds);
extern double regressionb(const struct deco_state *ds);