]> git.tdb.fi Git - ext/subsurface.git/blobdiff - equipment.c
Clear O2/H2 field if there is no tank information
[ext/subsurface.git] / equipment.c
index 64a05d5b024d3500ffbc6ff666cd3726d3ce99aa..c7a683b898a9a391547219bda9c1bba717f4e921 100644 (file)
@@ -360,7 +360,7 @@ static void fill_cylinder_info(struct cylinder_widget *cylinder, cylinder_t *cyl
        }
 
        if (pressure && output_units.volume == CUFT) {
-               volume = cuft_to_ml(volume);
+               volume = cuft_to_l(volume);
                volume /= bar_to_atm(pressure);
        }
 
@@ -464,7 +464,7 @@ static void fill_tank_list(GtkListStore *store)
                /* Is it in cuft and psi? */
                if (psi) {
                        double bar = psi_to_bar(psi);
-                       double airvolume = cuft_to_ml(size);
+                       double airvolume = cuft_to_l(size) * 1000.0;
                        double atm = bar_to_atm(bar);
 
                        ml = airvolume / atm + 0.5;