Consistency

Former-commit-id: 379ae9d0f63c08a2de6f573bdb52068ed84c19ef
This commit is contained in:
Gawaboumga 2015-08-21 12:16:09 +02:00
parent 8716daf73c
commit 853ff0e701
1 changed files with 2 additions and 1 deletions

View File

@ -2027,7 +2027,8 @@ void NzRenderer::UpdateMatrix(nzMatrixType type)
// Matrices combinées // Matrices combinées
case nzMatrixType_ViewProj: case nzMatrixType_ViewProj:
s_matrices[nzMatrixType_ViewProj].matrix = s_matrices[nzMatrixType_View].matrix * s_matrices[nzMatrixType_Projection].matrix; s_matrices[nzMatrixType_ViewProj].matrix = s_matrices[nzMatrixType_View].matrix;
s_matrices[nzMatrixType_ViewProj].matrix.Concatenate(s_matrices[nzMatrixType_Projection].matrix);
s_matrices[nzMatrixType_ViewProj].updated = true; s_matrices[nzMatrixType_ViewProj].updated = true;
break; break;