mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Correctly computer O2 partial pressure
I had forgotten a / 1000.0 in the conversion of partial pressures from (double) bar to (int32) mbar. Fixes #763 Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
54237cb9a7
commit
a4679300cc
1 changed files with 1 additions and 1 deletions
|
@ -865,7 +865,7 @@ static int calculate_ccr_po2(struct plot_data *entry, struct divecomputer *dc) {
|
|||
}
|
||||
switch (np) {
|
||||
case 0: // Uhoh
|
||||
return entry->o2pressure.mbar / 1000.0;
|
||||
return entry->o2pressure.mbar;
|
||||
case 1: // Return what we have
|
||||
return sump;
|
||||
case 2: // Take the average
|
||||
|
|
Loading…
Add table
Reference in a new issue