[android] calculating the minimum amount of textures needed for the specified screen size.

This commit is contained in:
rachytski 2012-01-17 00:54:18 +04:00 committed by Alex Zolotarev
parent 09035aaa9e
commit 07a2aceb0f

View file

@ -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;