remove single minus sign

This commit is contained in:
Hayden Kowalchuk 2019-10-04 10:29:54 -04:00
parent 90eb264210
commit 805c68e973

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);