Fix matrix row-column ordering

master
outfrost 2020-05-26 23:15:55 +02:00
parent 7f996a3a7e
commit f832670b8c
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ void renderSceneNew(const Scene* scene) {
}
glMatrixMode(GL_MODELVIEW);
glLoadMatrixf((const GLfloat*) &scene->transform);
glLoadTransposeMatrixf((const GLfloat*) &scene->transform);
glDisable(GL_LIGHTING);
drawAxes();