From 3ae1c3dd459a635f952c59806504719d7ad832f0 Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Wed, 3 Aug 2016 14:33:19 +0200 Subject: [PATCH] Replace the "stop" symbol in deco plan Windows Server 2008 seems to be missing the heavy dash in Courier New. This replaces the symbol by an ordinary dash. Signed-off-by: Robert C. Helling --- core/planner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/planner.c b/core/planner.c index 601aac7..fe91769 100644 --- a/core/planner.c +++ b/core/planner.c @@ -699,7 +699,7 @@ static void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive, bool else if (dp->entered) segmentsymbol = "➙"; // right arrow for entered entered segment at constant depth else - segmentsymbol = "➖"; // heavey minus sign for deco stop + segmentsymbol = "-"; // minus sign (a.k.a. horizontal line) for deco stop len += snprintf(buffer + len, sz_buffer - len, "%s", segmentsymbol); -- 2.7.4 (Apple Git-66)