summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorleo2001-01-03 14:05:09 +0000
committerleo2001-01-03 14:05:09 +0000
commit635a58b5c6a6fe7b72a4c5b3c318674bcb665af2 (patch)
tree8e6890a01889fbe90569dae1732c968396706524 /common
parent518bfd7a804a166b4a13281e304e227b23270e21 (diff)
Little typo
git-svn-id: http://svn.leocad.org/trunk@200 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'common')
-rw-r--r--common/matrix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/matrix.cpp b/common/matrix.cpp
index a23bc88..59fad4b 100644
--- a/common/matrix.cpp
+++ b/common/matrix.cpp
@@ -198,7 +198,7 @@ float __LittleFloat (float l)
void Matrix::FromPacked (const float *mat)
{
#ifdef LC_BIG_ENDIAN
- for (int j = 0; j < 12; j++)
+ for (int i = 0; i < 12; i++)
mat[i] = __LittleFloat (mat[i]);
#endif