aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Olson2014-12-08 23:53:55 -0500
committerDana Olson2014-12-08 23:53:55 -0500
commit792d675d819119f209fb656bd366d010837a8762 (patch)
tree3d77ede806d12cf837dc6f27f21b3087de058409
parentbe4e40e90a5a322f6a7cec4893854ef5b15db600 (diff)
downloadgodot-792d675d819119f209fb656bd366d010837a8762.tar.gz
godot-792d675d819119f209fb656bd366d010837a8762.tar.zst
godot-792d675d819119f209fb656bd366d010837a8762.zip
wrong typedef - closes #270
-rw-r--r--core/int_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/int_types.h b/core/int_types.h
index 15ef68e91..31f05b2d3 100644
--- a/core/int_types.h
+++ b/core/int_types.h
@@ -48,7 +48,7 @@ typedef signed short int16_t;
typedef unsigned int uint32_t;
typedef signed int int32_t;
typedef long long int64_t;
-typedef unsigned long long int64_t;
+typedef unsigned long long uint64_t;
#else
#include <stdint.h>
#endif