Fixed error message

Former-commit-id: e75016a246fdc912575cd82e3ac93b9e4e952e20
This commit is contained in:
Lynix 2013-10-09 10:08:30 +02:00
parent 239ce4e323
commit 282291ffad
1 changed files with 3 additions and 3 deletions

View File

@ -610,7 +610,7 @@ const nzUInt8* NzImage::GetConstPixels(unsigned int x, unsigned int y, unsigned
#if NAZARA_UTILITY_SAFE #if NAZARA_UTILITY_SAFE
if (x >= width) if (x >= width)
{ {
NazaraError("X value exceeds width (" + NzString::Number(x) + " >= (" + NzString::Number(width) + ')'); NazaraError("X value exceeds width (" + NzString::Number(x) + " >= " + NzString::Number(width) + ')');
return nullptr; return nullptr;
} }
#endif #endif
@ -619,14 +619,14 @@ const nzUInt8* NzImage::GetConstPixels(unsigned int x, unsigned int y, unsigned
#if NAZARA_UTILITY_SAFE #if NAZARA_UTILITY_SAFE
if (y >= height) if (y >= height)
{ {
NazaraError("Y value exceeds height (" + NzString::Number(y) + " >= (" + NzString::Number(height) + ')'); NazaraError("Y value exceeds height (" + NzString::Number(y) + " >= " + NzString::Number(height) + ')');
return nullptr; return nullptr;
} }
unsigned int depth = (m_sharedImage->type == nzImageType_Cubemap) ? 6 : GetLevelSize(m_sharedImage->depth, level); unsigned int depth = (m_sharedImage->type == nzImageType_Cubemap) ? 6 : GetLevelSize(m_sharedImage->depth, level);
if (z >= depth) if (z >= depth)
{ {
NazaraError("Z value exceeds depth (" + NzString::Number(z) + " >= (" + NzString::Number(depth) + ')'); NazaraError("Z value exceeds depth (" + NzString::Number(z) + " >= " + NzString::Number(depth) + ')');
return nullptr; return nullptr;
} }
#endif #endif