diff --git a/OsmAnd/src/net/osmand/plus/activities/MapActivity.java b/OsmAnd/src/net/osmand/plus/activities/MapActivity.java index 784a42649f..5c3b862b11 100644 --- a/OsmAnd/src/net/osmand/plus/activities/MapActivity.java +++ b/OsmAnd/src/net/osmand/plus/activities/MapActivity.java @@ -798,7 +798,7 @@ public class MapActivity extends AccessibleActivity implements IMapLocationListe SensorManager sensorMgr = (SensorManager) getSystemService(SENSOR_SERVICE); Sensor s = sensorMgr.getDefaultSensor(Sensor.TYPE_ORIENTATION); if (s != null) { - if(!sensorMgr.registerListener(this, s, SensorManager.SENSOR_DELAY_NORMAL)) { + if(!sensorMgr.registerListener(this, s, SensorManager.SENSOR_DELAY_FASTEST)) { Log.e(LogUtil.TAG, "Sensor could not be enabled"); } }