support DrivingRegion default for Australia
This commit is contained in:
parent
3c2ae8c945
commit
000ff9879f
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue