From 1eaa29eed84281115e78e78853547018e0cb48be Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 12 Aug 2016 01:09:56 +0200 Subject: [PATCH] Fix prototype --- libretro-common/include/gfx/math/matrix_3x3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/include/gfx/math/matrix_3x3.h b/libretro-common/include/gfx/math/matrix_3x3.h index 507d41e683..f3819b6e06 100644 --- a/libretro-common/include/gfx/math/matrix_3x3.h +++ b/libretro-common/include/gfx/math/matrix_3x3.h @@ -41,7 +41,7 @@ void matrix_3x3_transpose(math_matrix_3x3 *out, const math_matrix_3x3 *in); void matrix_3x3_multiply(math_matrix_3x3 *out, const math_matrix_3x3 *a, const math_matrix_3x3 *b); -void matrix_3x3_divide_scalar(math_matrix_3x3 *mat, float s); +void matrix_3x3_divide_scalar(math_matrix_3x3 *mat, const float s); float matrix_3x3_determinant(const math_matrix_3x3 *mat); void matrix_3x3_adjoint(math_matrix_3x3 *mat); bool matrix_3x3_invert(math_matrix_3x3 *mat);