mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 20:23:25 +00:00
Do planned deco stops in multiples of 1 minute
We may want to make this configurable, but I haven't seen any software that doesn't do deco stops in full minutes. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1bec821c73
commit
2ffeff9a2c
1 changed files with 3 additions and 0 deletions
|
@ -331,6 +331,9 @@ void plan(struct diveplan *diveplan, char **cached_datap, struct dive **divep)
|
|||
}
|
||||
while (stopidx > 0) { /* this indicates that we had a non-zero first ceiling */
|
||||
wait_time = time_at_last_depth(dive, stoplevels[stopidx - 1], cached_datap);
|
||||
/* typically deco plans are done in one minute increments; we may want to
|
||||
* make this configurable at some point */
|
||||
wait_time = ((wait_time + 59) / 60) * 60;
|
||||
#if DEBUG_PLAN & 2
|
||||
printf("waittime %d:%02d at depth %5.2lfm\n", FRACTION(wait_time, 60), stoplevels[stopidx] / 1000.0);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue