aboutsummaryrefslogtreecommitdiffstats
path: root/dive.h
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2014-03-12 16:49:42 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-03-31 22:01:05 -0700
commit30bdfc8160100a296af7115a1f1dff5e4eeb710c (patch)
tree0a2f784132bdb747906a624b57acc247017efe0c /dive.h
parent7902af246c5fa2091caf8fd49e592d12b6e26daa (diff)
downloadsubsurface-30bdfc8160100a296af7115a1f1dff5e4eeb710c.tar.gz
Distinguish between entered and calculated waypoints
Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r--dive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dive.h b/dive.h
index 5ac43f16d..8b155e2a2 100644
--- a/dive.h
+++ b/dive.h
@@ -811,7 +811,7 @@ struct diveplan {
struct divedatapoint *dp;
};
-struct divedatapoint *plan_add_segment(struct diveplan *diveplan, int duration, int depth, int o2, int he, int po2);
+struct divedatapoint *plan_add_segment(struct diveplan *diveplan, int duration, int depth, int o2, int he, int po2, bool entered);
void get_gas_string(int o2, int he, char *buf, int len);
struct divedatapoint *create_dp(int time_incr, int depth, int o2, int he, int po2);
void dump_plan(struct diveplan *diveplan);