[BACK]Return to patch-src_gpspoint_c CVS log [TXT][DIR] Up to [local] / ports / geo / viking / patches

File: [local] / ports / geo / viking / patches / Attic / patch-src_gpspoint_c (download)

Revision 1.1.1.1 (vendor branch), Thu Jun 11 18:26:37 2009 UTC (15 years ago) by yason
Branch: yason
CVS Tags: import
Changes since 1.1: +0 -0 lines

import

$OpenBSD$
--- src/gpspoint.c.orig	Sun Feb  8 16:47:01 2009
+++ src/gpspoint.c	Thu Jun 11 22:09:27 2009
@@ -81,8 +81,9 @@ static gdouble line_altitude = VIK_DEFAULT_ALTITUDE;
 static gboolean line_visible = TRUE;
 
 static gboolean line_extended = FALSE;
-static gdouble line_speed = NAN;
-static gdouble line_course = NAN;
+/* I'm not shure this is a good way of doing things */
+static gdouble line_speed = 0;
+static gdouble line_course = 0;
 static gint line_sat = 0;
 static gint line_fix = 0;
 /* other possible properties go here */
@@ -293,8 +294,9 @@ void a_gpspoint_read_file(VikTrwLayer *trw, FILE *f ) 
     line_symbol = NULL;
 
     line_extended = FALSE;
-    line_speed = NAN;
-    line_course = NAN;
+/* I'm not shure this is a good way of doing things */
+    line_speed = 0;
+    line_course = 0;
     line_sat = 0;
     line_fix = 0;
   }