From 665916fe505bf294506770cdd8e3c227098debd6 Mon Sep 17 00:00:00 2001 From: sonora Date: Mon, 18 Jul 2016 23:19:03 +0200 Subject: [PATCH] small timing tweaking --- OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java b/OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java index 4ddf864a38..e3c10525e1 100644 --- a/OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java +++ b/OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java @@ -462,7 +462,7 @@ public class VoiceRouter { if (currentStatus == STATUS_UNKNOWN) { // Play "Continue for ..." if (1) after route calculation no other prompt is due, or (2) after a turn if next turn is more than PREPARE_LONG_DISTANCE away if ((playGoAheadDist == -1) || (dist > PREPARE_LONG_DISTANCE)) { - playGoAheadDist = dist - 80; + playGoAheadDist = dist - 3 * TURN_DISTANCE; } }