From 07a2aceb0f2121bdf51f786802479ad475f8075b Mon Sep 17 00:00:00 2001 From: rachytski Date: Tue, 17 Jan 2012 00:54:18 +0400 Subject: [PATCH] [android] calculating the minimum amount of textures needed for the specified screen size. --- android/jni/com/mapswithme/platform/Platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/jni/com/mapswithme/platform/Platform.cpp b/android/jni/com/mapswithme/platform/Platform.cpp index 8f54412ee6..fad83d0e22 100644 --- a/android/jni/com/mapswithme/platform/Platform.cpp +++ b/android/jni/com/mapswithme/platform/Platform.cpp @@ -27,7 +27,7 @@ public: /// pure magic ;) double rotatedScreenCircleDiameter = sqrt(screenWidth * screenWidth + screenHeight * screenHeight); - int tilesOnOneSide = ceil(rotatedScreenCircleDiameter / m_tileSize); + int tilesOnOneSide = ceil(rotatedScreenCircleDiameter / (m_tileSize / 1.05 / 2)); int singleScreenTilesCount = tilesOnOneSide * tilesOnOneSide; m_maxTilesCount = singleScreenTilesCount * 2;