Skip to content

Commit 094eb99

Browse files
committed
Merge pull request #111601 from AThousandShips/fix_build_objprof
Fix use of outdated macros in ObjectDBProfiler
2 parents 10c333a + ac05ce5 commit 094eb99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/objectdb_profiler/snapshot_collector.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,9 @@ Error SnapshotCollector::parse_message(void *p_user, const String &p_msg, const
168168
}
169169

170170
String SnapshotCollector::get_godot_version_string() {
171-
String hash = String(VERSION_HASH);
171+
String hash = String(GODOT_VERSION_HASH);
172172
if (hash.length() != 0) {
173173
hash = " " + vformat("[%s]", hash.left(9));
174174
}
175-
return "v" VERSION_FULL_BUILD + hash;
175+
return "v" GODOT_VERSION_FULL_BUILD + hash;
176176
}

0 commit comments

Comments
 (0)