From 2b0f30c3d4773d4e78daf7e2ce76f5c3f3a2d0b3 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 9 Nov 2011 20:15:48 -0500 Subject: [PATCH] This should fix the missing end pressure for broken dive computers Some dive computers randomly drop samples. That was no problem unless it was the LAST sample. We work around that now Signed-off-by: Dirk Hohndel --- profile.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/profile.c b/profile.c index d2ebf4a..f0ae0c9 100644 --- a/profile.c +++ b/profile.c @@ -698,7 +698,8 @@ static void plot_cylinder_pressure_text(struct graphics_context *gc, struct plot } } cyl = entry->cylinderindex; - last_pressure[cyl] = GET_PRESSURE(entry); + if (GET_PRESSURE(entry)) + last_pressure[cyl] = GET_PRESSURE(entry); last_time[cyl] = entry->sec; for (cyl = 0; cyl < MAX_CYLINDERS; cyl++) { @@ -934,6 +935,7 @@ static void fill_missing_tank_pressures(struct dive *dive, struct plot_info *pi, if (!nlist) { /* just continue without calculating * interpolated values */ + INTERPOLATED_PRESSURE(entry) = cur_pr[entry->cylinderindex]; list = NULL; continue; } -- 2.43.0