diff options
author | zero13cool <zero13cool@yandex.com> | 2021-01-05 01:17:18 +0000 |
---|---|---|
committer | zero13cool <zero13cool@yandex.com> | 2021-01-05 01:44:52 +0000 |
commit | 9f3d7d970921ea89de7186dba649fc4ebb401b7a (patch) | |
tree | 2109cbbad1b76a2eafc6199afb5423ca8dd531a2 /modules/gdnative/include | |
parent | c13bb0b5415299ae69cd698d7f300859f2e85c16 (diff) |
Changed type to make it work on x32 architecture.
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r-- | modules/gdnative/include/gdnative/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/gdnative/string.h b/modules/gdnative/include/gdnative/string.h index 8f249792bb..e58be18b21 100644 --- a/modules/gdnative/include/gdnative/string.h +++ b/modules/gdnative/include/gdnative/string.h @@ -261,7 +261,7 @@ godot_bool godot_string_is_empty(const godot_string *p_self); // path functions godot_string GDAPI godot_string_get_base_dir(const godot_string *p_self); godot_string GDAPI godot_string_get_file(const godot_string *p_self); -godot_string GDAPI godot_string_humanize_size(size_t p_size); +godot_string GDAPI godot_string_humanize_size(uint64_t p_size); godot_bool GDAPI godot_string_is_abs_path(const godot_string *p_self); godot_bool GDAPI godot_string_is_rel_path(const godot_string *p_self); godot_bool GDAPI godot_string_is_resource_file(const godot_string *p_self); |