Fixed error message missing right parenthese
Former-commit-id: a054d8e328dbe3a43c2f8615a52eeb79a1fe2031
This commit is contained in:
@@ -688,7 +688,7 @@ void NzMesh::SetMaterial(unsigned int matIndex, const NzString& materialPath)
|
|||||||
|
|
||||||
if (matIndex >= m_impl->materials.size())
|
if (matIndex >= m_impl->materials.size())
|
||||||
{
|
{
|
||||||
NazaraError("Material index out of range (" + NzString::Number(matIndex) + " >= " + NzString::Number(m_impl->materials.size()));
|
NazaraError("Material index out of range (" + NzString::Number(matIndex) + " >= " + NzString::Number(m_impl->materials.size()) + ')');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user