From: Kaj-Michael Lang Date: Fri, 29 Feb 2008 14:11:30 +0000 (+0200) Subject: Allow a bit faster movement for the random gps simulator. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=381563327a57f5d328323ef77089a10523af72c9;p=mapper Allow a bit faster movement for the random gps simulator. --- diff --git a/src/gps.c b/src/gps.c index 5d2ce27..942a341 100644 --- 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;