Utility/Image: Fix tabs

Former-commit-id: 4fd9be606d7cb356bdac14e9d8a9e23d493a549f
This commit is contained in:
Lynix 2016-01-24 15:23:37 +01:00
parent cbd73a9ac0
commit ed62fa5398
1 changed files with 5 additions and 5 deletions

View File

@ -1168,11 +1168,11 @@ namespace Nz
EnsureOwnership();
Copy(m_sharedImage->levels[level].get(), pixels, PixelFormat::GetBytesPerPixel(m_sharedImage->format),
GetLevelSize(m_sharedImage->width, level),
GetLevelSize(m_sharedImage->height, level),
GetLevelSize(m_sharedImage->depth, level),
0, 0,
srcWidth, srcHeight);
GetLevelSize(m_sharedImage->width, level),
GetLevelSize(m_sharedImage->height, level),
GetLevelSize(m_sharedImage->depth, level),
0, 0,
srcWidth, srcHeight);
return true;
}