diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-13 12:52:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 12:52:17 +0100 |
commit | 835406cf04f0200a0504ae171964c687c559eb1e (patch) | |
tree | a42d7429e37e7b9ab64240c70b00c521215ee0b5 /modules/gdnative/include | |
parent | f1ac2920847eafb7e89a27dcb98ecd4ee68b9750 (diff) | |
parent | b14bf4bcd07d549fc056d3cbfa7064a9e1907ef6 (diff) |
Merge pull request #36163 from akien-mga/gdnative-godot_int-int64_t
GDNative: Make godot_int an int64_t
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r-- | modules/gdnative/include/gdnative/gdnative.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/gdnative/gdnative.h b/modules/gdnative/include/gdnative/gdnative.h index e19a2ec149..6fd0bdc87f 100644 --- a/modules/gdnative/include/gdnative/gdnative.h +++ b/modules/gdnative/include/gdnative/gdnative.h @@ -127,7 +127,7 @@ typedef bool godot_bool; /////// int -typedef int godot_int; +typedef int64_t godot_int; /////// real |