diff Discovery/Src/t7.c @ 249:cefee1448ea6

Merged in janlmulder/ostc4/bm-1 (pull request #16) Replace Relative GF by saturation
author heinrichsweikamp <bitbucket@heinrichsweikamp.com>
date Thu, 11 Apr 2019 10:26:22 +0000
parents 3949781096d4
children 7420ed6c3508 b111fc4250e9
line wrap: on
line diff
--- a/Discovery/Src/t7.c	Wed Apr 10 11:04:56 2019 +0200
+++ b/Discovery/Src/t7.c	Thu Apr 11 10:26:22 2019 +0000
@@ -2578,7 +2578,7 @@
     /* actual GF */
     case 8:
         headerText[2] = TXT_ActualGradient;
-        snprintf(text,TEXTSIZE,"\020%.0f",100 * pDecoinfoStandard->output_relative_gradient);
+        snprintf(text,TEXTSIZE,"\020%.0f\016\016%%\017",100 * pDecoinfoStandard->super_saturation);
         break;
     }
     headerText[3] = 0;
@@ -3098,7 +3098,7 @@
     text[textpointer++] = '\n';
     text[textpointer++] = '\r';
     text[textpointer++] = '\t';
-    textpointer += snprintf(&text[textpointer],10,"\020%.0f",		100 * pDecoinfoStandard->output_relative_gradient);
+    textpointer += snprintf(&text[textpointer],10,"\020%.0f\016\016%%\017",		100 * pDecoinfoStandard->super_saturation);
     text[textpointer++] = '\n';
     text[textpointer++] = '\r';
     text[textpointer++] = '\t';