From 13cdccf23ba639d7a30a590698cfd36ee558c794 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sun, 8 Jan 2017 20:58:39 -0300 Subject: Variant INT and REAL are now 64 bits (other types remain at 32) --- core/variant.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/variant.h') 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; -- cgit v1.2.3