Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-03-25 14:22:47 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-03-25 14:22:47 +0400
commitb7dbb2f48e32858201ce2e5c5b11222f06e5a381 (patch)
tree97d90642d7304e9f68733c8f72659cbfbf602ac6 /source/blender/blenlib/intern/math_matrix.c
parentd4cc81d5523b3e625b809baa4a57c73664fb13db (diff)
Correction to the previous commit
Diffstat (limited to 'source/blender/blenlib/intern/math_matrix.c')
-rw-r--r--source/blender/blenlib/intern/math_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c
index 3dd6c667494..cfcbd0bce72 100644
--- a/source/blender/blenlib/intern/math_matrix.c
+++ b/source/blender/blenlib/intern/math_matrix.c
@@ -2126,7 +2126,7 @@ void invert_m4_m4_safe(float Ainv[4][4], float A[4][4])
Atemp[2][2] += 1e-8f;
if (!invert_m4_m4(Ainv, Atemp)) {
- return unit_m4(Ainv);
+ unit_m4(Ainv);
}
}
}