From 5398fa5f3955d6cc75496ff9fa7e2f608ccf48c0 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 4 Nov 2016 20:34:31 +0100 Subject: [PATCH] (libretro-common) Nit --- libretro-common/gfx/math/matrix_4x4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro-common/gfx/math/matrix_4x4.c b/libretro-common/gfx/math/matrix_4x4.c index 678ea73ab2..9b481c1ec0 100644 --- a/libretro-common/gfx/math/matrix_4x4.c +++ b/libretro-common/gfx/math/matrix_4x4.c @@ -112,8 +112,8 @@ void matrix_4x4_rotate_y(math_matrix_4x4 *mat, float rad) */ void matrix_4x4_rotate_z(math_matrix_4x4 *mat, float rad) { - float cosine = cosf(rad); - float sine = sinf(rad); + float cosine = cosf(rad); + float sine = sinf(rad); MAT_ELEM_4X4(*mat, 0, 0) = cosine; MAT_ELEM_4X4(*mat, 0, 1) = -sine;