diff options
| -rw-r--r-- | indra/llrender/llrender.cpp | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/indra/llrender/llrender.cpp b/indra/llrender/llrender.cpp index 0e242a20f6..98d3ab8435 100644 --- a/indra/llrender/llrender.cpp +++ b/indra/llrender/llrender.cpp @@ -2156,9 +2156,12 @@ void LLRender::vertexBatchPreTransformed(LLVector3* verts, LLVector2* uvs, LLCol  		}  	} -	mVerticesp[mCount] = mVerticesp[mCount-1]; -	mTexcoordsp[mCount] = mTexcoordsp[mCount-1]; -	mColorsp[mCount] = mColorsp[mCount-1]; +	if (mCount > 0) +	{ +		mVerticesp[mCount] = mVerticesp[mCount - 1]; +		mTexcoordsp[mCount] = mTexcoordsp[mCount - 1]; +		mColorsp[mCount] = mColorsp[mCount - 1]; +	}  }  void LLRender::vertex2i(const GLint& x, const GLint& y) | 
