]> err.no Git - mapper/commitdiff
Allow a bit faster movement for the random gps simulator.
authorKaj-Michael Lang <milang@onion.tal.org>
Fri, 29 Feb 2008 14:11:30 +0000 (16:11 +0200)
committerKaj-Michael Lang <milang@onion.tal.org>
Fri, 29 Feb 2008 14:11:30 +0000 (16:11 +0200)
src/gps.c

index 5d2ce27f9545b7f5650250225131c8953b12d310..942a341dbc9aae35d78b1b728d27d43154e9470e 100644 (file)
--- a/src/gps.c
+++ b/src/gps.c
@@ -408,8 +408,8 @@ gfloat h;
 g_assert(gps);
 
 if (g_random_double()<0.5) {
-       slat=g_random_double_range(-0.0003, 0.0003);
-       slon=g_random_double_range(-0.0003, 0.0003);
+       slat=g_random_double_range(-0.0008, 0.0008);
+       slon=g_random_double_range(-0.0008, 0.0008);
 }
 plat=gps->data.lat;
 plon=gps->data.lon;