diff options
-rw-r--r-- | divelist.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/divelist.c b/divelist.c index 42e06abbd..1daf0f5ac 100644 --- a/divelist.c +++ b/divelist.c @@ -152,12 +152,9 @@ int total_weight(struct dive *dive) static int active_o2(struct dive *dive, struct divecomputer *dc, duration_t time) { - int o2permille = dive->cylinder[0].gasmix.o2.permille; + int o2permille = get_o2(&dive->cylinder[0].gasmix); struct event *event; - if (!o2permille) - o2permille = O2_IN_AIR; - for (event = dc->events; event; event = event->next) { if (event->time.seconds > time.seconds) break; |