Showing 1 changed files with 1 additions and 1 deletions
+1 -1
Nasal/display.nas
... ...
@@ -1076,7 +1076,7 @@ var displayClass = {
1076 1076
                     abs_deflection_max = 0.5;
1077 1077
                 var abs_deflection = abs(deflection);
1078 1078
                 me.screenElements['CDI-GPS-XTK-text']
1079
-                    .setText(sprintf(abs_deflection < 1 ? 'XTK %.1NM' : 'XTK %iNM', abs_deflection))
1079
+                    .setText(sprintf((abs_deflection < 1 ? 'XTK %.1fNM' : 'XTK %iNM'), abs_deflection))
1080 1080
                     .setVisible(abs_deflection > abs_deflection_max);
1081 1081
                 var scale = deflection / 2;
1082 1082
             }