Round MOD of gas rather than truncate

For the proper calculation, we need to take salinity and surface pressure
into account (rather than depth = bar * 10 - 10)

Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Robert C. Helling 2015-07-06 00:07:39 +02:00 committed by Dirk Hohndel
parent 9c6a3a7ff3
commit a7d18a9fa6
6 changed files with 24 additions and 12 deletions

View file

@ -536,7 +536,7 @@ bool DivePlannerPointsModel::addGas(struct gasmix mix)
prefs.o2consumption / prefs.decosac / prefs.pscr_ratio;
else
modpO2.mbar = prefs.decopo2;
cyl->depth = gas_mod(&mix, modpO2, M_OR_FT(3,10));
cyl->depth = gas_mod(&mix, modpO2, &displayed_dive, M_OR_FT(3,10));