summaryrefslogtreecommitdiffstats
path: root/core/variant.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-01-08 20:58:39 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-01-08 20:58:39 -0300
commit13cdccf23ba639d7a30a590698cfd36ee558c794 (patch)
treec5663aa7050d6d79ef1073ac26d8ff0104a27ad4 /core/variant.h
parent94ee7798ced5bc79196c971921c3109e299f8306 (diff)
downloadredot-engine-13cdccf23ba639d7a30a590698cfd36ee558c794.tar.gz
Variant INT and REAL are now 64 bits (other types remain at 32)
Diffstat (limited to 'core/variant.h')
-rw-r--r--core/variant.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant.h b/core/variant.h
index a2b9a88b3e..764ba9ae60 100644
--- a/core/variant.h
+++ b/core/variant.h
@@ -141,7 +141,7 @@ private:
union {
bool _bool;
- int _int;
+ int64_t _int;
double _real;
Matrix32 *_matrix32;
AABB* _aabb;