diff options
author | Anton Lundin <glance@acc.umu.se> | 2013-09-22 23:21:01 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-09-23 21:05:35 -0700 |
commit | 0c9e6f9acc055f37699ef336f880346fef6129ca (patch) | |
tree | 83530245db5b7e19e3c65f8aaa1cca0024dba45f /profile.c | |
parent | dba16202c498d4432bc20181b0084f54b7abdba1 (diff) | |
download | subsurface-0c9e6f9acc055f37699ef336f880346fef6129ca.tar.gz |
Remove o2/he from plot_data and fix gas plot text
plot_data.o2 and plot_data.he was wrong for all dives, due to that
cylinderindex was set right first in populate_pressure_information, and
thus those two contained bogus information.
This makes the plot-text use cylinderindex-lookup as everything else.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -840,8 +840,6 @@ static struct plot_data *populate_plot_entries(struct dive *dive, struct divecom entry->po2 = sample->po2 / 1000.0; /* FIXME! sensor index -> cylinder index translation! */ entry->cylinderindex = sample->sensor; - entry->o2 = dive->cylinder[entry->cylinderindex].gasmix.o2.permille; - entry->he = dive->cylinder[entry->cylinderindex].gasmix.he.permille; SENSOR_PRESSURE(entry) = sample->cylinderpressure.mbar; entry->temperature = sample->temperature.mkelvin; @@ -855,12 +853,6 @@ static struct plot_data *populate_plot_entries(struct dive *dive, struct divecom plot_data[idx++].sec = lasttime+20; pi->nr = idx; - /* make sure the first two entries have the correct gas */ - plot_data[0].o2 = plot_data[2].o2; - plot_data[0].he = plot_data[2].he; - plot_data[1].o2 = plot_data[2].o2; - plot_data[1].he = plot_data[2].he; - return plot_data; } |