From 6151adfe8c9e00d112ce1b6e2be63f75c740e3ea Mon Sep 17 00:00:00 2001 From: Emmanuel Leblond Date: Thu, 31 Aug 2017 23:24:26 +0200 Subject: Correct GDnative's godot_string_find_last method name --- modules/gdnative/godot/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/gdnative/godot/string.cpp') diff --git a/modules/gdnative/godot/string.cpp b/modules/gdnative/godot/string.cpp index 3790b6ea95..1282cf95e5 100644 --- a/modules/gdnative/godot/string.cpp +++ b/modules/gdnative/godot/string.cpp @@ -232,7 +232,7 @@ godot_int GDAPI godot_string_findn_from(const godot_string *p_self, godot_string return self->findn(*what, p_from); } -godot_int GDAPI find_last(const godot_string *p_self, godot_string p_what) { +godot_int GDAPI godot_string_find_last(const godot_string *p_self, godot_string p_what) { const String *self = (const String *)p_self; String *what = (String *)&p_what; -- cgit v1.2.3