diff options
author | Robert C. Helling <helling@atdotde.de> | 2014-03-12 16:49:42 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-03-31 22:01:05 -0700 |
commit | 30bdfc8160100a296af7115a1f1dff5e4eeb710c (patch) | |
tree | 0a2f784132bdb747906a624b57acc247017efe0c /dive.h | |
parent | 7902af246c5fa2091caf8fd49e592d12b6e26daa (diff) | |
download | subsurface-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |