From 000ff9879fc098d2e0cc1436566622b63f28cc5c Mon Sep 17 00:00:00 2001 From: sonora Date: Thu, 15 Sep 2016 15:57:55 +0200 Subject: [PATCH] support DrivingRegion default for Australia --- OsmAnd/src/net/osmand/plus/OsmandSettings.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/OsmandSettings.java b/OsmAnd/src/net/osmand/plus/OsmandSettings.java index 330e64486a..afa519693b 100644 --- a/OsmAnd/src/net/osmand/plus/OsmandSettings.java +++ b/OsmAnd/src/net/osmand/plus/OsmandSettings.java @@ -756,7 +756,9 @@ public class OsmandSettings { return DrivingRegion.CANADA; } else if (df.getCountry().equalsIgnoreCase(Locale.JAPAN.getCountry())) { return DrivingRegion.JAPAN; - // potentially wrong in europe + } else if (df.getCountry().equalsIgnoreCase(Locale.AU.getCountry())) { + return DrivingRegion.AUSTRALIA; +// potentially wrong in Europe // } else if(df.getCountry().equalsIgnoreCase(Locale.UK.getCountry())) { // return DrivingRegion.UK_AND_OTHERS; }