Cleanup: Use new vector transform functions

This commit is contained in:
Julian Eisel
2015-09-20 18:11:25 +02:00
parent a28a1f11d6
commit 28da385ac2
13 changed files with 33 additions and 33 deletions

View File

@@ -1303,7 +1303,7 @@ void RAS_OpenGLRasterizer::applyTransform(double* oglmatrix,int objectdrawmode )
up[0], up[1], up[2], 0,
0, 0, 0, 1};
glTranslated(objpos[0],objpos[1],objpos[2]);
glTranslate3dv(objpos);
glMultMatrixd(maat);
}