From 929b98d24b53789b3e3fbbae90aed0fe0e72b409 Mon Sep 17 00:00:00 2001 From: Stijn Hinlopen Date: Fri, 3 Jul 2020 15:26:22 +0200 Subject: Remove String::find_last (same as rfind) --- core/project_settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/project_settings.cpp') diff --git a/core/project_settings.cpp b/core/project_settings.cpp index 5247f6da40..7e96735d67 100644 --- a/core/project_settings.cpp +++ b/core/project_settings.cpp @@ -93,7 +93,7 @@ String ProjectSettings::localize_path(const String &p_path) const { } else { memdelete(dir); - int sep = path.find_last("/"); + int sep = path.rfind("/"); if (sep == -1) { return "res://" + path; } -- cgit v1.2.3