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:
Diffstat (limited to 'intern/moto/include/MT_Tuple2.h')
-rwxr-xr-xintern/moto/include/MT_Tuple2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/moto/include/MT_Tuple2.h b/intern/moto/include/MT_Tuple2.h
index bb2ec67dc44..84280bec50a 100755
--- a/intern/moto/include/MT_Tuple2.h
+++ b/intern/moto/include/MT_Tuple2.h
@@ -75,7 +75,7 @@ public:
const MT_Scalar *getValue() const { return m_co; }
void getValue(float *vv) const {
- vv[0] = m_co[0]; vv[1] = m_co[1];
+ vv[0] = (float) m_co[0]; vv[1] = (float) m_co[1];
}
void getValue(double *vv) const {