aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/statistics.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/core/statistics.c b/core/statistics.c
index d86fe6324..ff8122124 100644
--- a/core/statistics.c
+++ b/core/statistics.c
@@ -345,23 +345,11 @@ void get_gas_used(struct dive *dive, volume_t gases[MAX_CYLINDERS])
{
int idx;
struct divecomputer *dc;
- bool used;
for (idx = 0; idx < MAX_CYLINDERS; idx++) {
- used = false;
cylinder_t *cyl = &dive->cylinder[idx];
pressure_t start, end;
- for_each_dc(dive, dc) {
- if (same_string(dc->model, "planned dive"))
- continue;
- if (has_gaschange_event(dive, dc, idx))
- used = true;
- }
-
- if (!used)
- continue;
-
start = cyl->start.mbar ? cyl->start : cyl->sample_start;
end = cyl->end.mbar ? cyl->end : cyl->sample_end;
if (end.mbar && start.mbar > end.mbar)