From d1f6abbd8b463f227503c172ca7fa234924ac5d9 Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Fri, 26 Jun 2026 13:19:41 -0700 Subject: [PATCH] Fix the Android build after https://github.com/godotengine/godot/pull/118856 --- core/profiling/profiling.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/profiling/profiling.h b/core/profiling/profiling.h index 04a041084894..f5f316b60490 100644 --- a/core/profiling/profiling.h +++ b/core/profiling/profiling.h @@ -144,7 +144,7 @@ struct PerfettoScriptTracer { PerfettoScriptTracer(const StringName &p_file, const StringName &p_function, const StringName &p_name, int p_line, bool p_system_call) : name(p_name), is_system_call(p_system_call) { if (is_system_call || !__tracing_system_call.erase(name)) { - TRACE_EVENT_BEGIN("godot_scripting", perfetto::DynamicString(p_name.operator String().utf8().get_data()), "source file", p_file.operator String().utf8().get_data(), "line number", p_line); + TRACE_EVENT_BEGIN("godot_scripting", perfetto::DynamicString(p_name.string().utf8().get_data()), "source file", p_file.string().utf8().get_data(), "line number", p_line); tracing = true; }