summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2019-06-22 20:43:56 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2019-06-22 20:43:56 +0200
commit3b4cf4f418dd94a00f09e218322ed390bea63250 (patch)
tree279839b5dc33bd0ee004e31db4e5df05489e6917
parentfixed types (diff)
downloadre3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar
re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.gz
re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.bz2
re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.lz
re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.xz
re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.zst
re3-3b4cf4f418dd94a00f09e218322ed390bea63250.zip
-rw-r--r--src/math/Matrix.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/Matrix.h b/src/math/Matrix.h
index faee4660..a93de636 100644
--- a/src/math/Matrix.h
+++ b/src/math/Matrix.h
@@ -155,9 +155,9 @@ public:
r.Normalise();
f = CrossProduct(u, r);
}
- void CopyOnlyMatrix(CMatrix *other){
- m_matrix = other->m_matrix;
- }
+ void CopyOnlyMatrix(CMatrix *other){
+ m_matrix = other->m_matrix;
+ }
};
inline CMatrix&