Fix minor typo - Was m[3][4] instead of m[4][4] for a 4x4 matrix

This commit is contained in:
Joshua Leung 2016-06-24 03:15:55 +12:00
parent 4fd78bb06f
commit 9839aba84f

@ -273,7 +273,7 @@ void BLI_space_transform_invert_normal(const struct SpaceTransform *data, float
/*********************************** Other ***********************************/
void print_m3(const char *str, float M[3][3]);
void print_m4(const char *str, float M[3][4]);
void print_m4(const char *str, float M[4][4]);
#define print_m3_id(M) print_m3(STRINGIFY(M), M)
#define print_m4_id(M) print_m4(STRINGIFY(M), M)