summaryrefslogtreecommitdiff
path: root/modules/gdnative
diff options
context:
space:
mode:
authorEmmanuel Leblond <emmanuel.leblond@gmail.com>2017-08-19 17:08:33 +0200
committerEmmanuel Leblond <emmanuel.leblond@gmail.com>2017-08-19 17:08:33 +0200
commit00d552b1cdd074a2a74dca15dad3ad20edc32c9a (patch)
tree6ebfc5475134a97312bc7abe41e38910e2a9fdc0 /modules/gdnative
parentbacfe7a557838832a51add41e1d2ca7d08b886a7 (diff)
[GDnative] Correct godot_string_chars_to_utf8_with_len function name
Diffstat (limited to 'modules/gdnative')
-rw-r--r--modules/gdnative/godot/string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/godot/string.h b/modules/gdnative/godot/string.h
index c901ce36e6..7695cd7931 100644
--- a/modules/gdnative/godot/string.h
+++ b/modules/gdnative/godot/string.h
@@ -172,7 +172,7 @@ void GDAPI godot_string_utf8(godot_string *p_self, char *result);
godot_bool GDAPI godot_string_parse_utf8(godot_string *p_self, const char *p_utf8);
godot_bool GDAPI godot_string_parse_utf8_with_len(godot_string *p_self, const char *p_utf8, godot_int p_len);
godot_string GDAPI godot_string_chars_to_utf8(const char *p_utf8);
-godot_string GDAPI godot_string_chars_utf8_with_len(const char *p_utf8, godot_int p_len);
+godot_string GDAPI godot_string_chars_to_utf8_with_len(const char *p_utf8, godot_int p_len);
uint32_t GDAPI godot_string_hash(const godot_string *p_self);
uint64_t GDAPI godot_string_hash64(const godot_string *p_self);