OpenGL2: Fix reversed VectorCopy4() usage.

This commit is contained in:
SmileTheory 2016-09-11 16:08:18 -07:00
parent 497a74f22a
commit ec3779988c
1 changed files with 2 additions and 2 deletions

View File

@ -1125,14 +1125,14 @@ static void RB_SurfaceGrid( srfBspSurface_t *srf ) {
if ( tess.shader->vertexAttribs & ATTR_NORMAL )
{
VectorCopy4(normal, dv->normal);
VectorCopy4(dv->normal, normal);
normal += 4;
}
#ifdef USE_VERT_TANGENT_SPACE
if ( tess.shader->vertexAttribs & ATTR_TANGENT )
{
VectorCopy4(tangent, dv->tangent);
VectorCopy4(dv->tangent, tangent);
tangent += 4;
}
#endif