From 0b68eef85de4aa07d0c7791f55636c3fe7246b9d Mon Sep 17 00:00:00 2001 From: sonora Date: Sat, 13 Feb 2016 00:48:10 +0100 Subject: [PATCH] small correction --- OsmAnd/src/net/osmand/plus/routing/AlarmInfo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/routing/AlarmInfo.java b/OsmAnd/src/net/osmand/plus/routing/AlarmInfo.java index 9e033892c8..1b04af2efe 100644 --- a/OsmAnd/src/net/osmand/plus/routing/AlarmInfo.java +++ b/OsmAnd/src/net/osmand/plus/routing/AlarmInfo.java @@ -122,7 +122,7 @@ public class AlarmInfo implements LocationPoint { return Integer.MAX_VALUE; } // 1 level of priorities - if (time < 8 || distance < 100 || type == AlarmInfoType.SPEED_LIMIT) { + if (time < 6 || distance < 75 || type == AlarmInfoType.SPEED_LIMIT) { return type.getPriority(); } if (type == AlarmInfoType.SPEED_CAMERA && (time < 15 || distance < 150)) {