diff options
Diffstat (limited to 'src/Matrix4.h')
-rw-r--r-- | src/Matrix4.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Matrix4.h b/src/Matrix4.h index 0558fa5f3..a5d6017d0 100644 --- a/src/Matrix4.h +++ b/src/Matrix4.h @@ -98,8 +98,8 @@ public: inline void RotateZ(T a_RZ) { - T sz = (T) sin(a_RZ * M_PI / 180); - T cz = (T) cos(a_RZ * M_PI / 180); + T sz = static_cast<T>(sin(a_RZ * M_PI / 180)); + T cz = static_cast<T>(cos(a_RZ * M_PI / 180)); Identity(); |