mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Remove some safety stop code in plan()
Some code in plan() left from the gtk days introduced a safety stop in the plan. It created a un-editable diveplanpoint. Fixes #349 Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
13c9d2ad38
commit
0d4fb44c18
1 changed files with 2 additions and 8 deletions
10
planner.c
10
planner.c
|
@ -614,15 +614,9 @@ void plan(struct diveplan *diveplan, char **cached_datap, struct dive **divep, b
|
|||
po2 = dive->dc.sample[dive->dc.samples - 1].po2;
|
||||
depth = dive->dc.sample[dive->dc.samples - 1].depth.mm;
|
||||
|
||||
/* if all we wanted was the dive just get us back to the surface
|
||||
* we ascend with 15ft / min to the safety stop and 7.5ft / min from there */
|
||||
/* if all we wanted was the dive just get us back to the surface */
|
||||
if (!add_deco) {
|
||||
if (depth > 5000) {
|
||||
transitiontime = depth / 75; /* this still needs to be made configurable */
|
||||
plan_add_segment(diveplan, transitiontime, 5000, o2, he, po2);
|
||||
depth = 5000;
|
||||
}
|
||||
transitiontime = 2 * depth / 75; /* this still needs to be made configurable */
|
||||
transitiontime = depth / 75; /* this still needs to be made configurable */
|
||||
plan_add_segment(diveplan, transitiontime, 0, o2, he, po2);
|
||||
/* re-create the dive */
|
||||
delete_single_dive(dive_table.nr - 1);
|
||||
|
|
Loading…
Add table
Reference in a new issue