Merge branch 'minus_fix' into 'master'
remove single minus sign See merge request simulant/GLdc!50
This commit is contained in:
commit
05e242e054
|
@ -199,7 +199,7 @@ void APIENTRY glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z) {
|
||||||
0.0f, 0.0f, 0.0f, 1.0f
|
0.0f, 0.0f, 0.0f, 1.0f
|
||||||
};
|
};
|
||||||
|
|
||||||
float r = DEG2RAD * -angle;
|
float r = DEG2RAD * angle;
|
||||||
|
|
||||||
float c = cos(r);
|
float c = cos(r);
|
||||||
float s = sin(r);
|
float s = sin(r);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user