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:
authorClément Foucault <foucault.clem@gmail.com>2022-08-21 13:44:54 +0300
committerClément Foucault <foucault.clem@gmail.com>2022-08-21 13:45:10 +0300
commita283e07e040c6d93528bf117e84e0110404f2f13 (patch)
tree027425c2cf5cd25c69c1f852a575ebdf72b9b1c8
parent563404d8ad44a03443b54c51e502b108fcd42555 (diff)
BLI: float4x4: Fix bug / typo in << operator
-rw-r--r--source/blender/blenlib/BLI_float4x4.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_float4x4.hh b/source/blender/blenlib/BLI_float4x4.hh
index 64e6e68432f..ca0d9ea0028 100644
--- a/source/blender/blenlib/BLI_float4x4.hh
+++ b/source/blender/blenlib/BLI_float4x4.hh
@@ -266,7 +266,7 @@ struct float4x4 {
for (int j = 0; j < 4; j++) {
snprintf(fchar, sizeof(fchar), "%11.6f", mat[j][i]);
stream << fchar;
- if (i != 3) {
+ if (j != 3) {
stream << ", ";
}
}