Fixed a bug introduced by 00bf467

This commit is contained in:
Bogdan Poplauschi 2016-10-06 15:59:37 +03:00
parent af34683191
commit efad1e5cd4
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ static const CGFloat kDestImageSizeMB = 60.0f;
static const CGFloat kSourceImageTileSizeMB = 20.0f;
static const CGFloat kBytesPerMB = 1024.0f * 1024.0f;
static const CGFloat kPixelsPerMB = kBytesPerMB * kBytesPerPixel;
static const CGFloat kPixelsPerMB = kBytesPerMB / kBytesPerPixel;
static const CGFloat kDestTotalPixels = kDestImageSizeMB * kPixelsPerMB;
static const CGFloat kTileTotalPixels = kSourceImageTileSizeMB * kPixelsPerMB;