mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Convert get_gas_from_events to get_gas_at_time
This converts the get_gas_from_events to a get_gas_at_time function that actually maps our events to what cylinder and thus gas we are breathing at that time. [Dirk Hohndel: fixed to actually use the gas that was looked up (and make things compile)] Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
9eeeba468a
commit
7806dbbd9e
3 changed files with 13 additions and 15 deletions
|
@ -112,7 +112,7 @@ void DivePlannerPointsModel::loadFromDive(dive *d)
|
|||
const sample &s = d->dc.sample[i];
|
||||
if (s.time.seconds == 0)
|
||||
continue;
|
||||
get_gas_from_events(&d->dc, lasttime, &gas);
|
||||
get_gas_at_time(d, &d->dc, lasttime, &gas);
|
||||
plannerModel->addStop(s.depth.mm, s.time.seconds, &gas, 0, true);
|
||||
lasttime = s.time;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue