aboutsummaryrefslogtreecommitdiffstats
path: root/src/gmisc/gmisc_matrix2d.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gmisc/gmisc_matrix2d.c')
-rw-r--r--src/gmisc/gmisc_matrix2d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gmisc/gmisc_matrix2d.c b/src/gmisc/gmisc_matrix2d.c
index 2cd162f2..352afbe7 100644
--- a/src/gmisc/gmisc_matrix2d.c
+++ b/src/gmisc/gmisc_matrix2d.c
@@ -75,7 +75,7 @@ void gmiscMatrixFloat2DApplyRotation(MatrixFloat2D *dst, const MatrixFloat2D *sr
s = fsin(angle);
c = fcos(angle);
#else
- c = angle*M_PI/180;
+ c = angle*GFX_PI/180;
s = sin(c);
c = cos(c);
#endif