From 793228f171fe9859c76992019aa94d98fe636e65 Mon Sep 17 00:00:00 2001 From: Luo Zhihao Date: Mon, 8 Sep 2025 22:17:09 +0800 Subject: [PATCH] JoltPhysics: Fix orphan StringName --- modules/jolt_physics/spaces/jolt_job_system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jolt_physics/spaces/jolt_job_system.cpp b/modules/jolt_physics/spaces/jolt_job_system.cpp index 2022c12160..73da9aa1ae 100644 --- a/modules/jolt_physics/spaces/jolt_job_system.cpp +++ b/modules/jolt_physics/spaces/jolt_job_system.cpp @@ -176,7 +176,7 @@ void JoltJobSystem::post_step() { #ifdef DEBUG_ENABLED void JoltJobSystem::flush_timings() { - static const StringName profiler_name("servers"); + const StringName profiler_name = SNAME("servers"); EngineDebugger *engine_debugger = EngineDebugger::get_singleton();