(ANdroid JNI) Bugfix - onLocationGetHorizontalAccuracy should return

double, not float
This commit is contained in:
twinaphex 2013-12-21 15:04:47 +01:00
parent be5609269a
commit 2b5ece3804
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ implements ConnectionCallbacks, OnConnectionFailedListener, LocationListener
* *
* @return the horizontal accuracy of the current position. * @return the horizontal accuracy of the current position.
*/ */
public float onLocationGetHorizontalAccuracy() public double onLocationGetHorizontalAccuracy()
{ {
return mCurrentLocation.getAccuracy(); return mCurrentLocation.getAccuracy();
} }