Skip to content
Snippets Groups Projects
Commit bfeb16e8 authored by Jim's avatar Jim
Browse files

Fix bug with matrix rotation function

parent 6a59aef3
No related branches found
No related tags found
No related merge requests found
...@@ -305,7 +305,7 @@ void gs_matrix_rotaa4f(float x, float y, float z, float angle) ...@@ -305,7 +305,7 @@ void gs_matrix_rotaa4f(float x, float y, float z, float angle)
struct matrix3 *top_mat = top_matrix(thread_graphics); struct matrix3 *top_mat = top_matrix(thread_graphics);
struct axisang aa; struct axisang aa;
if (!top_mat) { if (top_mat) {
axisang_set(&aa, x, y, z, angle); axisang_set(&aa, x, y, z, angle);
matrix3_rotate_aa(top_mat, top_mat, &aa); matrix3_rotate_aa(top_mat, top_mat, &aa);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment