From ac05ce522615af924991f23ce995312ac1792c7e Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:25:45 +0200 Subject: [PATCH] Fix use of outdated macros in ObjectDBProfiler These were renamed but were missed in this PR and fails with disable deprecated. --- modules/objectdb_profiler/snapshot_collector.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/objectdb_profiler/snapshot_collector.cpp b/modules/objectdb_profiler/snapshot_collector.cpp index 2e9adda205..530ca525c1 100644 --- a/modules/objectdb_profiler/snapshot_collector.cpp +++ b/modules/objectdb_profiler/snapshot_collector.cpp @@ -168,9 +168,9 @@ Error SnapshotCollector::parse_message(void *p_user, const String &p_msg, const } String SnapshotCollector::get_godot_version_string() { - String hash = String(VERSION_HASH); + String hash = String(GODOT_VERSION_HASH); if (hash.length() != 0) { hash = " " + vformat("[%s]", hash.left(9)); } - return "v" VERSION_FULL_BUILD + hash; + return "v" GODOT_VERSION_FULL_BUILD + hash; }