Signed-off-by: Rick Walsh <[email protected]>
---
 planner.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/planner.c b/planner.c
index e0f889e..4a191ca 100644
--- a/planner.c
+++ b/planner.c
@@ -552,7 +552,10 @@ static void add_plan_to_notes(struct diveplan *diveplan, 
struct dive *dive, bool
                snprintf(temp, sz_temp, translate("gettextFromC", "based on 
Buhlmann ZHL-16B with GFlow = %d and GFhigh = %d"),
                        diveplan->gflow, diveplan->gfhigh);
        } else if (prefs.deco_mode == VPMB){
-               snprintf(temp, sz_temp, "%s", translate("gettextFromC", "based 
on VPM-B"));
+               if (prefs.conservatism_level == 0)
+                       snprintf(temp, sz_temp, "%s", translate("gettextFromC", 
"based on VPM-B at nominal conservatism"));
+               else
+                       snprintf(temp, sz_temp, translate("gettextFromC", 
"based on VPM-B at +%d conservatism"), prefs.conservatism_level);
        } else if (prefs.deco_mode == RECREATIONAL){
                snprintf(temp, sz_temp, translate("gettextFromC", "recreational 
mode based on Buhlmann ZHL-16B with GFlow = %d and GFhigh = %d"),
                        diveplan->gflow, diveplan->gfhigh);
-- 
2.4.3

_______________________________________________
subsurface mailing list
[email protected]
http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface

Reply via email to