Merge branch 'minus_fix' into 'master'

remove single minus sign

See merge request simulant/GLdc!50
This commit is contained in:
Luke Benstead 2019-10-04 14:33:25 +00:00
commit 05e242e054

View File

@ -199,7 +199,7 @@ void APIENTRY glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) {
0.0f, 0.0f, 0.0f, 1.0f
};
float r = DEG2RAD * -angle;
float r = DEG2RAD * angle;
float c = cos(r);
float s = sin(r);