From 27d43eecfda3f9d2da965d2f20e484dfa1a790f7 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 6 Sep 2014 00:19:01 -0400 Subject: [PATCH] matrix: Fix a misnamed function prototype --- gfx/math/matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/math/matrix.h b/gfx/math/matrix.h index 91cec8072d..6ada38349a 100644 --- a/gfx/math/matrix.h +++ b/gfx/math/matrix.h @@ -25,7 +25,7 @@ typedef struct math_matrix #define MAT_ELEM(mat, r, c) ((mat).data[4 * (c) + (r)]) -void matrix_load_identity(math_matrix *mat); +void matrix_identity(math_matrix *mat); void matrix_transpose(math_matrix *out, const math_matrix *in); void matrix_rotate_x(math_matrix *mat, float rad);