1
0
Fork 0

Fix CopyPaste error that ment a_MaxRelX wasdn't checked

Fixes CID 70464
This commit is contained in:
worktycho 2014-07-13 15:05:54 +01:00
parent 25a0264cc4
commit bfc485bfe2
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ void cChunkDesc::ReadBlockArea(cBlockArea & a_Dest, int a_MinRelX, int a_MaxRelX
LOGWARNING("%s: MaxRelX less than zero, adjusting to zero", __FUNCTION__);
a_MaxRelX = 0;
}
else if (a_MinRelX >= cChunkDef::Width)
else if (a_MaxRelX >= cChunkDef::Width)
{
LOGWARNING("%s: MaxRelX more than chunk width, adjusting to chunk width", __FUNCTION__);
a_MaxRelX = cChunkDef::Width - 1;