summaryrefslogtreecommitdiff
path: root/core/variant_call.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-07-29 09:04:26 +0200
committerGitHub <noreply@github.com>2019-07-29 09:04:26 +0200
commit8547a351eb53e95c10525dcd3fb6a1fd58f746fd (patch)
tree13a14b9ef200eae8893ac9243ed6e6c0fa25e225 /core/variant_call.cpp
parentbecbb7b525e1cc9bf1520a0ac94b9e9f799f6169 (diff)
parent7dbbb5eac7a2a64066b0acd9b0cf7c8800f9c809 (diff)
Merge pull request #30774 from aaronfranke/set-obsolete
Make Set methods obsolete
Diffstat (limited to 'core/variant_call.cpp')
-rw-r--r--core/variant_call.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant_call.cpp b/core/variant_call.cpp
index 377cc889b8..1f6e5bb653 100644
--- a/core/variant_call.cpp
+++ b/core/variant_call.cpp
@@ -914,7 +914,7 @@ struct _VariantCall {
static void Quat_init2(Variant &r_ret, const Variant **p_args) {
- r_ret = Quat(((Vector3)(*p_args[0])), ((float)(*p_args[1])));
+ r_ret = Quat(((Vector3)(*p_args[0])), ((real_t)(*p_args[1])));
}
static void Quat_init3(Variant &r_ret, const Variant **p_args) {